Viewing 15 posts - 46 through 60 (of 130 total)
Make sure activate Execute on Main Package Thread (workflow properties) and put this line at the end of the script: Main = DTSTaskExecResult_Success
JFB
April 22, 2004 at 8:01 am
April 22, 2004 at 7:53 am
I'm not an expert, however, did you try to put an extra quote in you where statement?
strSQL2 = "select * from table1 where id in (select id from table2 where...
April 16, 2004 at 9:41 am
April 16, 2004 at 9:31 am
1. sa is a special account for sql server. It should be a reason why??, I dont know because I never use sa.
2. You need to delete guest user from...
April 13, 2004 at 7:06 am
Follow this steps and let me know if it works?
1.Create a new user in sql server 2000 (dtsUser) and password
2.Set this user for msdb database
3.Create a sample DTS package and...
April 12, 2004 at 1:11 pm
April 12, 2004 at 9:33 am
Hi, create a userDTS in you msdb database and give permissions to this user to run the package.
Regards
JFB
April 12, 2004 at 9:27 am
Hi, to perform this, you need to go to the Transform Data Task Properties (black line) --> tranformations --> Edit.
JFB
April 12, 2004 at 9:24 am
Hi,
You should create a dts user in you sql server box and set permissions for this user to run a dts pkg.
Regards
JFB
April 12, 2004 at 9:18 am
Hi,
You can replace the name using workflow properties for the destination source file step with this example code.
Regards
JFB
'********************************************
' Visual Basic ActiveX Script
'********************************************
Option Explicit
Function Main()
Dim oConn, sFilename
Set oConn = DTSGlobalVariables.Parent
'...
December 19, 2003 at 2:07 pm
Hi,
You can perform a loop DTS package, here is an example to get the idea.
http://www.swynk.com/friends/green/dtsdirloopstep.asp
JFB
July 14, 2003 at 7:29 am
What are you doing inside the pkg?
Are you using cubes?
Make sure the account running sql agent have permissions in the places where DTS is working.
JFB
June 23, 2003 at 11:28 am
Hi,
Here is something to start with
http://www.sqldts.com/default.aspx?6,107,277,7,1
Good way is to import all into a temp table and then update you main table, also it's better to have one connection...
June 23, 2003 at 11:01 am
Viewing 15 posts - 46 through 60 (of 130 total)