Forum Replies Created

Viewing 15 posts - 16 through 30 (of 30 total)

  • RE: drop

    That make sense.

  • RE: drop

    Anyone can answer these kind of questions right by just cut and past to their SSMS

  • RE: Managing Large Data Sets in SQL Server 2005 and 2008

    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...

  • RE: Accessing Multiple SQL Server

    Thank you so much.

  • RE: Accessing Multiple SQL Server

    Where can I read more about it?

  • RE: Anything other than Trigger ?

    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

    )...

  • RE: Anything other than Trigger ?

    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...

  • RE: SQL Server Tools

    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...

  • RE: Adding Log File

    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....

  • RE: Adding Log File

    Thank you for the detail answer that helped me a lot, now I understand where did I drop the ball.

  • RE: Adding Log File

    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...

  • RE: Adding Log File

    Log Files can be more than one according to BOL. At least one is a must.

  • RE: Files and File Groups

    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...

  • RE: Files and File Groups

    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...

  • RE: Files and File Groups

    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...

Viewing 15 posts - 16 through 30 (of 30 total)