Viewing 15 posts - 16 through 30 (of 30 total)
Zach,
The research looks great and the article is nice explains itself very good. In SQL Server or any RDBMS partitioning large table helps in many ways and batch processing always...
January 4, 2010 at 12:40 pm
Here is the code... (I try to post it yesterday, no luck)
CREATE TRIGGER dbo.MyTrigger ON dbo.MyTable
FOR INSERT, UPDATE AS
BEGIN
Set Nocount ON
--AUDIT NEW RECORD.
INSERT INTO TrackingDB.dbo.TrackingTable (
Col1, Col2, Col3, Col4
)...
December 1, 2009 at 11:55 am
Hi Guys, Thank you for your help. I have resolved this issue by use "SET NOCOUNT ON", it was my first step to try to make it work and it...
December 1, 2009 at 10:43 am
I have used Quest Spotlight for a long time. It has saved lots of time and many times it help me fine tune the server very well. Many companies have...
November 24, 2009 at 10:57 am
Well, we continue to google it and able to bring it back the database again without log files. It took 2 hours to bring the database from suspect more live....
October 14, 2009 at 5:54 pm
Thank you for the detail answer that helped me a lot, now I understand where did I drop the ball.
October 14, 2009 at 2:51 pm
Noep, I did not do that... I just added a file and modified the existing one. That did not take any effect. My biggest concern is why the physical file...
October 14, 2009 at 12:24 pm
Log Files can be more than one according to BOL. At least one is a must.
October 14, 2009 at 11:54 am
Steve,
Thank you for the reply. I am trying to use FG to reduce the size of backup and restore that's all. In this way I can keep loading one particular...
August 16, 2009 at 10:32 am
Steve,
I agree with you, mirroring is the good idea to setup a secondary read only database. Log shipping could be other choice but you cannot access the database while logs...
August 14, 2009 at 11:53 am
Well, Thanks for the reply. I understand the transaction log back up and restore. I am wondering if I can do that using Online File Group Backup and File Group...
August 13, 2009 at 1:31 pm
Viewing 15 posts - 16 through 30 (of 30 total)