Viewing 15 posts - 106 through 120 (of 233 total)
Thanks Adi for your reply.
I am very new to the system. Still need to dig out what all queries are getting fired on this table. I have got around 12...
June 2, 2009 at 3:48 am
You don't have to drop the staging rather you can TRUNCATE the staging after you load in destination table is completed.
May 28, 2009 at 8:07 am
Try this one
bcp LoggingStage.dbo.MyTable out "C:\inventory.txt" -n -T -S SERVERNAME
replace SERVERNAME with the name of your server
May 28, 2009 at 4:04 am
Please don't post the queries at multiple places.
http://www.sqlservercentral.com/Forums/Topic724861-145-1.aspx
May 28, 2009 at 3:19 am
Rightly said by Eswin, there are many ways.
But i wanted to ask you one thing: if you want to move your data into BCP files and delete that data from...
May 28, 2009 at 3:12 am
The solution I would use in your scenario would be:
1. Have a staging table(with same layout as your destination table) and load everything from excel into the staging table.
2. Update...
May 28, 2009 at 3:06 am
Creating different DFTs is one way to achieve multiple table transfer. And this is the simplest one.
The other way to have a loop and do extract and load by dynamically...
May 12, 2009 at 8:05 am
Do you have a connection manager with the name "1APWN0001.test.dbname"?
Please post the config file also.
May 12, 2009 at 6:46 am
Where is the error message?
May 12, 2009 at 3:58 am
i've created the xml file, and followed the steps to configure the file, but when i execute the package from my .net application, it is not accesing the servername(src name),...
May 12, 2009 at 2:10 am
Hi,
Can you be more specific....
what do you mean by this statement:
"I need to specify that user A has the rights to create table in his own login, but not...
May 11, 2009 at 5:37 am
For using of the XML file go to Menu SSIS -> Package Configuration -> Add..
If you want to transfer multiple table you can make use of Import/Export wizard...then save the...
May 11, 2009 at 5:25 am
Or you can try something like this:
SELECT datediff(dd
,entdte
,CASE compdte
WHEN '1900-01-01 00:00:00.000'
THEN getdate()
ELSE compdte
END
)AS WORKDAYS
FROM svc00200
April 21, 2009 at 7:30 am
There is no need to loop on the records
You can make use of "Conditional Split" Data Transformation to achieve this. Put the condition on the value of the source table...
March 16, 2009 at 12:27 pm
Viewing 15 posts - 106 through 120 (of 233 total)