Viewing 15 posts - 2,371 through 2,385 (of 2,486 total)
The servers registered in EM are stored in the registry at the following key,
HKEY_CURRENT_USER\Software\Microsoft\Microsoft SQL Server\80\Tools\SQLEW\Registered Servers X\SQL Server Group
It's a binary value so you probably...
February 5, 2003 at 2:54 pm
Ok here's what I came up with. An important thing to note is that you need to set the Precedence Constraints for the next step in the sequence.
I set up...
February 5, 2003 at 12:42 am
Have you tried doing a self-join,
eg:
select d1.DomainID , d2.DomainID
from Domain d1
inner join Domain d2
on d1.ParentDomainID = d2.DomainID
Thanks
Phill Carter
February 4, 2003 at 2:55 pm
Do you get any error messages? Turn on package logging to check what it's doing. Also, make sure that the process that will execute has sufficient access rights.
Thanks
Phill Carter
February 4, 2003 at 2:36 pm
In a word, No . Global Variables don't hold arrays.
Thanks
Phill Carter
Edited by - phillcart on 02/03/2003 3:55:49 PM
February 3, 2003 at 3:55 pm
Do a Bilk Insert into a staging table, then execute a regular T-SQL insert to insert the records into the final table.
Thanks
Phill Carter
February 3, 2003 at 3:42 pm
Looks like a latch wait problem. Check out 'Latching' in BOL.
Run perfmon and watch the 'Average Latch Wait Time' counter. From memory, I think anything above 1500ms is indication of...
February 3, 2003 at 2:47 pm
Have you tried setting the StepExecutionStatus to 'DTSStepExecStat_Completed'?
I've only done the Inactive and Waiting myself. Just thought that this might simplify a problem I'm having. Will be trying it out...
February 3, 2003 at 2:36 pm
Try doing using the BULK INSERT command in Query Analyzer and see how long it takes.
What sort of data are you importing?
Thanks
Phill Carter
February 3, 2003 at 2:30 pm
It's a permissions problem. Checkout the following articles,
http://support.microsoft.com/default.aspx?scid=kb;en-us;298725
http://support.microsoft.com/default.aspx?scid=kb;en-us;269074
Thanks
Phill Carter
February 3, 2003 at 2:28 pm
If you use the DataPump task to import your data, then you can write an ActiveXScript that manipulates the task properties before it executes.
If you're using SQL 2000, jump into...
February 3, 2003 at 2:25 pm
Try DTSBackup 2000 at sqldts.com
http://www.sqldts.com/default.aspx?220,272,272,1,1
If you're moving the packages between SQL Servers, make sure you have 'Direct Transfer' select in the options. This will preserve the formatting and annotations.
Really though,...
February 3, 2003 at 2:18 pm
In your ActiveXScript, first you need a package object then you can open the steps and tasks associated with that package.
EG:
Dim oPkg, oStep, oTsk
Set oPkg =...
February 3, 2003 at 4:22 am
Try copying the ActiveXScripts into seperate files and execute them at a command prompt. You'll probably find that the script is waiting for some sort of input.
Thanks
Phill Carter
February 2, 2003 at 7:48 pm
How many rows are you importing? How long is it taking? What version of SQL are you using?
What other methods of importing have you tried?
Thanks
Phill Carter
February 2, 2003 at 2:42 pm
Viewing 15 posts - 2,371 through 2,385 (of 2,486 total)