Viewing 15 posts - 16 through 30 (of 31 total)
Jeff Moden (10/27/2008)
Sure... read the very message of mine that you quoted... lookup IDENTITY in Books Online.
Jeff,
By identity column you mean IS IDENTITY = 'TRUE' which will increment the identity...
October 28, 2008 at 7:32 am
Jeff Moden (10/27/2008)
October 27, 2008 at 8:29 pm
Jeff Moden (10/27/2008)
rishgup (10/26/2008)
Jeff Moden (10/26/2008)
And, how does the app know what that latest value is?Whenever any Insert Operation occurs on tbl employee counter_ins will be increment by 1.
Heh......
October 27, 2008 at 6:59 am
Jeff Moden (10/26/2008)
And, how does the app know what that latest value is?
Whenever any Insert Operation occurs on tbl employee counter_ins will be increment by 1.
October 26, 2008 at 8:53 pm
Jeff Moden (10/24/2008)
rishgup (10/24/2008)
October 25, 2008 at 9:11 pm
[quote-0
It might effect. It depends on the rate of the data modification statements. According to the trigger that you posted, all of the triggers are updating the same...
October 24, 2008 at 10:04 am
I figure out the error in my trigger. That was silly error. now Trigger is working fine and I am getting the result which I was looking for
But my only...
October 24, 2008 at 9:51 am
Thanks to all who give suggesstions. Now my database is all set.
I set up transaction log backup every 1 hour and its working fine. And it is mirrored as...
October 24, 2008 at 9:46 am
I have database which has 2 tables tblCount with counter_ins field and tblEmployee with emp_name, emp_last, emp_add adn emp_ph fields.
There is no indexing on tables. And I want to find...
October 23, 2008 at 6:22 pm
SQLBOT (10/22/2008)
I have a suggested approach:
Write an after trigger that adds the event's rowcounts to a counter table.
This will only get you counts AFTER the trigger is in place,...
October 23, 2008 at 1:53 pm
Steve Jones - Editor (10/22/2008)
I'd look at a trace, grab just insert/update/delete events to a table.Then roll those up periodically to another table and delete them from the trace table.
Steve,...
October 22, 2008 at 1:19 pm
GilaMonster (10/21/2008)
October 22, 2008 at 11:28 am
GilaMonster (10/20/2008)
rishgup (10/20/2008)
I have scedule transaction log back every weekend. nut still no use. Trans log file is growing day by day.
You need to backup the log a lot more...
October 20, 2008 at 7:50 pm
FNS (10/20/2008)
Given that your log is 50Gb vs data at 2Gb you're going to...
October 20, 2008 at 2:54 pm
Viewing 15 posts - 16 through 30 (of 31 total)