Please start any new threads on our new
site at https://forums.sqlteam.com. We've got lots of great SQL Server
experts to answer whatever question you can come up with.
Author |
Topic |
ismailc
Constraint Violating Yak Guru
290 Posts |
Posted - 2007-07-30 : 05:31:17
|
Hi, I get the following error when trying to add a VB script. I'm rewriting from SQL 2000 to 2005. but i get the following error when trying to parseActiveX Script TaskAn error occurred while creating the ActiveX scripting host. Verify that the scripting host is installed properly.I've checked on google but all I get is the error code. DTS_E_AXTASKUTIL_SCRIPTHOST_CREATE_FAILEDPlease anyone help on a solution! |
|
SwePeso
Patron Saint of Lost Yaks
30421 Posts |
|
ismailc
Constraint Violating Yak Guru
290 Posts |
Posted - 2007-07-30 : 09:57:03
|
Hi, Software is installed on the server.I'm not to sure if its my code. Language - VB Script LanguageScript - below scriptMy Entry Method - is blank, should it be blank? Please help as I am stuck. No senior to assist as we just starting to change over (Nobody knows) Thank You for your assistance!!!(Simple delete file, this just a small part used to test the component) Function Main() sFile = "c:\dailySales.asc" Set oFSO = CreateObject("Scripting.FileSystemObject") If oFSO.FileExists(sFile) Then oFSO.DeleteFile sFile, TRUE End If Main = DTSTaskExecResult_SuccessEnd Function |
|
|
|
|
|