Viewing 12 posts - 16 through 28 (of 28 total)
Hey, What's the size data inserted into the table? I recommend to use create clustered index for better performance. Also create index on the table after insertion of records.
April 10, 2012 at 9:05 pm
See if you can change the dataType from char to varchar and update the coulmn by trimming it.
April 10, 2012 at 2:30 am
That would be a realistic way 🙂 U needn't worry about restarting the jobs whenever you are back or needn't put an reminder for every holiday.
April 10, 2012 at 1:11 am
Please share the code snippet of trigger and procedure
April 10, 2012 at 1:00 am
Whats the o/p of below query at first place?
select CountyFIPS
from ##test_backfillGeo
where CountyFIPS not like ''
April 10, 2012 at 12:57 am
Thanks to all. Since we have trace enabled for our databased. I used them to extract required info.
August 10, 2010 at 10:38 pm
Let me try using profiler. Do we have any other solution than profiler?
August 9, 2010 at 7:09 am
You are correct Jim. I need to capture the rows affected for each query fired along with it's counter part. At a time multiple queries can be fired together.
August 9, 2010 at 6:47 am
If i use @@rowcount, then i will get for last query but not set of qureies fired 🙁
August 9, 2010 at 5:55 am
Thanks for reply. But how can aduit the qureies fired by end users against the rows affected?
August 9, 2010 at 5:00 am
In the following query I need to make it work without WHILE loop.
Create Table Job (JobID int identity, Role char(10), Location char(50))
Create Table Employee (EmpID int identity, EmpName char(50), Role...
June 4, 2010 at 5:31 am
Viewing 12 posts - 16 through 28 (of 28 total)