hey thanks for responding!i am not sure which account is used for sql server service account. how can i tell?The job is just a sample i made up to test this. it is just an active x script that writes text to a file...here is the script.'**********************************************************************' Visual Basic ActiveX Script'************************************************************************Function Main()dim filesys, filetxt, getname, path, myTimeSet filesys = CreateObject("Scripting.FileSystemObject")Set filetxt = filesys.CreateTextFile("\\Server\C$\\DTSTextTest.txt", True)path = filesys.GetAbsolutePathName("\\Server\C$\C:\")myTime = Time ()getname = filesys.GetFileName(path)filetxt.WriteLine("This Text File Was Created Successfully by an ActiveX Script in a SQL DTS Job at: " & myTime)filetxt.CloseMain = DTSTaskExecResult_SuccessEnd Function
also, do i need anything else at all in the DTS job itself? all i have is the activex script, and i tried it with and without a sql ole db connection.Thanks for any help!let me know if you need anything else.-S