Viewing 15 posts - 16 through 30 (of 42 total)
True true.
But we have to add in a few other columns of data as it is loading. I believe I am unable to manipulate the data as it is...
October 9, 2003 at 2:03 pm
Another I idea that I have grown to love is actually not calling the packages from the page but from a Stored Proc.
I find it is much easier to call...
September 9, 2003 at 2:23 pm
Start with a simple DTS from your XLS file to Table.
In the DTS select the 4 columns from the source file and the one col in the destination table, create
Create...
September 9, 2003 at 2:15 pm
IF scheduling the pack is not possible I like triggering DTS from Stored Procs.
-- <<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<DECLARE @objPackage int
DECLARE @PackageName varchar(128)
DECLARE @rc int
DECLARE @ServerName varchar(128)
DECLARE @DatabaseName varchar(128)
SET@PackageName = 'DTS_Example'
SET@ServerName =...
August 18, 2003 at 8:11 am
Thanks Sal,
I have done further testing on this and found:
I have a Stored proc triggering a DTS package, the package transforms a file to table, using an active x script....
August 18, 2003 at 7:32 am
Not sure how you are triggering the package. If you are calling it from a page or proc you could try this:
Try sending the file name 20030811.csv as a...
August 14, 2003 at 9:18 am
Have you tried setting the row delimiter to {lf}{cr}{lf}.
This can easilt be set when you select your csv file.
August 12, 2003 at 1:27 pm
I too have the same problem with Output Global Vars
DTSGlobalVariables("strRetFileString").Value="XXXXXXXXXXXXX"
Even this simple string is not returned to the calling procedure, where as if I set this value as the default...
August 12, 2003 at 9:14 am
Thank you for the responses
I like the idea of the tickler file and will give that a try.
Cheers
August 5, 2003 at 8:20 am
I figured it was ust something along those lines.
Thank you
July 30, 2003 at 6:44 am
I have done some follow tests with this sp and found the following:
Both Return and Recset return if return is using a 'select count(*)...'
The Recset does not return if returning...
July 29, 2003 at 11:56 am
I guess I got hung up on the
Statements following RETURN are not executed.
But statements are executed after?
July 29, 2003 at 10:21 am
<b>RETURN</b>
Exits unconditionally from a query or procedure. RETURN is immediate and complete and can be used at any point to exit from a procedure, batch, or statement block. Statements following...
July 29, 2003 at 10:19 am
Interested in something along these lines.
Truncate table results in a syntax error when I try from an Execute SQL Task.
???
Thanks
Mark
March 14, 2003 at 11:36 am
Viewing 15 posts - 16 through 30 (of 42 total)