Viewing 15 posts - 1,921 through 1,935 (of 2,486 total)
What does the query plan for the SQL statments being executed look like? Is there a lot of parallel execution taking place? What sort of processors do you have? Maybe...
November 24, 2003 at 8:58 pm
When a DTS package is run, uses the security credentials of the process that executes it.
In this instance it would be using the security credentials of the Workgroup Web Server.
Have...
November 24, 2003 at 6:02 pm
For the import from A to B, do you have any transformations, or is it a straight Datapump from one table to the other?
If not, create a staging table that...
November 24, 2003 at 4:02 pm
As steven_white40 has suggested, you can save your packages as structured storage files. When the file is created for the first time it only saves the latest version of...
November 24, 2003 at 3:46 pm
So is either the txt file or the DB on the domain? If so then your package will need domain privelages to access that resource.
Hope this helps
Phill Carter
--------------------
Colt 45 -...
November 24, 2003 at 3:38 pm
The packages are stored in the sysdtspackages table as binary objects so you won't be able to query the table for anything.
You can put together a VBScript to open the...
November 24, 2003 at 3:36 pm
1) Do you have Package logging enabled? If so, is there any messages there?
2) Can you modify the stored procedure to provide some progress messages. Either write to a table...
November 24, 2003 at 3:33 pm
Not the would be anymore managable than DTS. Informix isn't one of the mainstream DBMS's that third-party developers provide a lot of native support for.
In the DTS package what data...
November 24, 2003 at 3:28 pm
Not sure if it'll work but how about using OPENQUERY. You might have to shelve the sp_MSforeachDB routine though.
Hope this helps
Phill Carter
--------------------
Colt 45 - the original point and click interface...
November 24, 2003 at 3:18 pm
Basically the package must be referring to a resource on the AD Domain. Given that, it needs to provide appropriate login details to access that resource.
How does the ASP page...
November 23, 2003 at 4:57 pm
You don't need to add a workflow script to every task. Just the one after your Transform task. In that task you could use a workflow script or a task...
November 23, 2003 at 4:44 pm
It's probably best to keep to structured storage files. Unless you can be sure you will have VB available whenever you want to load the packages.
Hope this helps
Phill Carter
--------------------
Colt 45...
November 23, 2003 at 3:29 pm
Yes you can. It won't perform as quick as a transfer database objects task in DTS. You are also tied to transferring one table at a time. If you group...
November 23, 2003 at 3:27 pm
You need to include the 'use ...' as part of the EXEC
eg:
exec ('use ' + @dbName + ' dbcc showcontig with tableresults, all_indexes')
Hope this helps
Phill Carter
--------------------
Colt...
November 20, 2003 at 7:35 pm
In your example, you won't get the output from your print statement because the error occurs in the parse and compile of the statement. So the @@ERROR variable isn't set.
Hope...
November 20, 2003 at 3:54 pm
Viewing 15 posts - 1,921 through 1,935 (of 2,486 total)