HiI try to create a "master-dts" which calls a lot of other dtss. (MS SQL 7.0)I use an ActiveX Script Task.If I use it local, than its ok. But if I use it with dtsrun, then I get error 80074005 "unspecified error"I think, that the sub-dts-package try to run on the wrong server.Any ideas?thanks steffisorry for my bad englishActiveX:' 205 (ExecPkgFromPkg)Option ExplicitFunction Main()Main = DTSTaskExecResult_SuccessDim oPkg, oStepDim sServer, sUID, sPWD, iSecurity , sPkgPWD, sPkgName, sErrMsgSet oPkg = CreateObject("DTS.Package")' Assign parameterssServer = "server"sUID = "sa"sPWD = "******"iSecurity = DTSSQLStgFlag_UseTrustedConnectionsPkgPWD = ""sPkgName = "sub_dts_package"' Load Child PackageoPkg.LoadFromSQLServer sServer, sUID, sPWD, iSecurity , sPkgPWD, "", "", sPkgName' Execute the PackageoPkg.Execute' Now check for errors in the Child PackageFor Each oStep In oPkg.StepsIf oStep.ExecutionResult = DTSStepExecResult_Failure ThenMain = DTSTaskExecResult_FailureEnd IfNext' Clean UpoPkg.UninitializeSet oStep = NothingSet oPkg = NothingEnd Function