Forum Replies Created

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

  • RE: Transaction Log Growth

    If it is production environment and if you need disaster recovery it is always better practice to keep auto grow property enabled on log file.

    If it is Dev or test...

    Nag
    ------------------------------------------------
    How to get the best help on a forum

    http://www.sqlservercentral.com/articles/Best+Practices/61537

  • RE: Transaction Log Growth

    enable the auto growth property of the transaction log, and you should have sufficient space on the drive. hope this will help you.

    Nag
    ------------------------------------------------
    How to get the best help on a forum

    http://www.sqlservercentral.com/articles/Best+Practices/61537

  • RE: SQL 2008 R2 Cluster Setup Documentation

    here is the link 😉

    http://www.microsoft.com/downloads/details.aspx?familyid=818234dc-a17b-4f09-b282-c6830fead499&displaylang=en

    Nag
    ------------------------------------------------
    How to get the best help on a forum

    http://www.sqlservercentral.com/articles/Best+Practices/61537

  • RE: How to get list of logins who have db_owner acess on database

    In the management studio, access the login properties of FMUSER under the security and logins folder go to the user mappings tab you can see the actual mappings for the...

    Nag
    ------------------------------------------------
    How to get the best help on a forum

    http://www.sqlservercentral.com/articles/Best+Practices/61537

  • RE: SSRS reports on SQL Server health

    People are always willing to respond or help to people who try their best and if the fail to get what they need, I am sorry if I said something...

    Nag
    ------------------------------------------------
    How to get the best help on a forum

    http://www.sqlservercentral.com/articles/Best+Practices/61537

  • RE: backuo/restore

    Try take a look at this article, linked articles in it

    http://technet.microsoft.com/en-us/magazine/2009.07.sqlbackup.aspx

    Nag
    ------------------------------------------------
    How to get the best help on a forum

    http://www.sqlservercentral.com/articles/Best+Practices/61537

  • RE: Is the MVP Worth It?

    I don't know how much more money or anything else an MVP can make, I dont know how it make any difference.

    But I am learning a lot and I...

    Nag
    ------------------------------------------------
    How to get the best help on a forum

    http://www.sqlservercentral.com/articles/Best+Practices/61537

  • RE: SSIS

    Professional SQL Server 2005 Integration Services this is one of the good book for 2005 SSIS.

    Nag
    ------------------------------------------------
    How to get the best help on a forum

    http://www.sqlservercentral.com/articles/Best+Practices/61537

  • RE: about backup process

    When you create a database it will create a copy of model database with new name and settings what every you set, and whenever a new database is created it...

    Nag
    ------------------------------------------------
    How to get the best help on a forum

    http://www.sqlservercentral.com/articles/Best+Practices/61537

  • RE: How to get list of logins who have db_owner acess on database

    Try This

    declare @sql2 varchar(8000),

    @dbname char(30),

    @sql3 varchar(8000),

    @sql4...

    Nag
    ------------------------------------------------
    How to get the best help on a forum

    http://www.sqlservercentral.com/articles/Best+Practices/61537

  • RE: to display no. rows

    Try this

    SELECT id, so.name, Rows FROM dbo.sysindexes si

    INNER JOIN sys.objects so

    ON so.[object_id] = si.ID

    WHERE si.indid < 2 and so.Type = 'U'

    ORDER BY 2

    Hay WayneS let me...

    Nag
    ------------------------------------------------
    How to get the best help on a forum

    http://www.sqlservercentral.com/articles/Best+Practices/61537

  • RE: job failes because of maximum row size

    It is a warning message, it occurs as row size of your temp table is grater than the size of the maximum row size.

    If you can post the temp table...

    Nag
    ------------------------------------------------
    How to get the best help on a forum

    http://www.sqlservercentral.com/articles/Best+Practices/61537

  • RE: How to replace the cursor

    Nagesh S-432384 (6/3/2010)


    Jeff Moden (6/2/2010)


    Very cool feedback, Nagesh. Thank you for taking the time.

    one more late response Jeff 🙂 I am in IST (in India) so I will be...

    Nag
    ------------------------------------------------
    How to get the best help on a forum

    http://www.sqlservercentral.com/articles/Best+Practices/61537

  • RE: After migration , is it possible to access migrated old server

    If you have done In Place upgrade you cant access, if you have done side by side upgrade then you can.

    Nag

    Nag
    ------------------------------------------------
    How to get the best help on a forum

    http://www.sqlservercentral.com/articles/Best+Practices/61537

  • RE: How to replace the cursor

    Jeff Moden (6/2/2010)


    Very cool feedback, Nagesh. Thank you for taking the time.

    one more late response Jeff 🙂 I am in IST (in India) so I will be always late...

    Nag
    ------------------------------------------------
    How to get the best help on a forum

    http://www.sqlservercentral.com/articles/Best+Practices/61537

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