Viewing 15 posts - 61 through 75 (of 321 total)
How many records this table contains? Definately clusted index will effect the inserts. If there are not many records you can drop the indexs,insert the data and recreate...
March 12, 2010 at 11:39 pm
Not sure of what is the requirement. Can u please elborate more with an example?
March 12, 2010 at 11:28 pm
Delete the old file and create again every time u run the dts. I am sure that u can do in DTS
March 11, 2010 at 4:55 am
check the following link
http://bytes.com/topic/sql-server/answers/78672-dts-package-owner
March 2, 2010 at 4:31 am
You can use linked server. Read BOL for further information
February 23, 2010 at 4:14 am
Fetch data means, select only. There is no DML operations involved
February 5, 2010 at 4:14 am
You can cancell. But depending on batch size of insert the rol lback take time.
February 4, 2010 at 10:36 pm
insert into table with(rowlock) values()
February 4, 2010 at 10:30 pm
Check the performance monitor or profiler. Basing on the result you can decide
February 1, 2010 at 2:46 am
Check fragmentaion on the table. It should improve the speed after attaining good fragmention.
February 1, 2010 at 2:43 am
Use the following and check
IF isnull(@eventype,'') !='rmo'
January 28, 2010 at 6:12 am
Your are using rollback transactions without commit statement.
You need to use begin tran,commit and rollback in the block.
January 28, 2010 at 6:05 am
Viewing 15 posts - 61 through 75 (of 321 total)