Viewing 15 posts - 16 through 30 (of 89 total)
Thanks Jeff...
I agree.. and I have IDENTITY as clustered index on the staging table which I am inserting into.
The problem is .. based certain business logic I am updating...
December 30, 2009 at 10:05 am
Thanks Jeff...
I agree.. and I have IDENTITY as clustered index on the staging table which I am inserting into.
The problem is .. based certain business logic I am updating...
December 30, 2009 at 10:03 am
I am loading data from different db... I am loading into staging table from staging table it will be loaded to different tables.
I have created index on the staging table...
December 30, 2009 at 3:25 am
Sorry.. I am not importing data from a flat file.. I am just importing from other table. So I am just using insert into .. select * from .....
I am...
December 29, 2009 at 11:30 pm
I am doing the same thing.. I am dropping the index before insert... i am creating index after bulk insert. Then I am doing some bulk updates to the same...
December 29, 2009 at 11:22 pm
I would suggest you to use sql instead of ssis...
in sql create a linked server and build the script insert into with select dynamically for all the tables.. that...
October 21, 2009 at 2:56 pm
I will put table definition you will get clear picture..
I have a table : test with column A, B and C with datatype int
test(A int, B int, C int)...........
June 23, 2009 at 1:00 pm
I know 1 will not be equal to 2,
according to that it should not execute the statement under if condition, still u will get error.
You can use this script...
June 6, 2009 at 10:56 pm
Thanks naveed.
Really it is helpful.
January 29, 2009 at 11:52 am
Hey .. I got an idea...
Try using
WAITFOR
{
DELAY 'time_to_pass'
| TIME 'time_to_execute'
| [ ( receive_statement ) | ( get_conversation_group_statement )...
January 23, 2009 at 12:48 am
The above query is good, but it will give the accurate count all the time. Since it takes the count using the index.
It depends on the index how you created.
If...
January 22, 2009 at 12:56 pm
There is no time bound triggers as for my knowledge. But what is your requirement, can you explain more.
January 21, 2009 at 1:53 am
I am not sure of this.. but check if they have released any hotfix for this.
There may be a bug in sp3 .. due towhich they might release a hotfix....
January 21, 2009 at 12:39 am
SELECT rows FROM sysindexes
WHERE id = OBJECT_ID('YourTableName') AND indid < 2
The above query is good, but it will give the accurate count all the time. Since it takes...
January 21, 2009 at 12:34 am
Checking for results the query you mentioned is fine. However, ePOOL table doesnot contain any records, you can only Insert into that table and not update
If it is not having...
January 21, 2009 at 12:31 am
Viewing 15 posts - 16 through 30 (of 89 total)