Forum Replies Created

Viewing 15 posts - 181 through 195 (of 619 total)

  • RE: Shrinking Log files on regular basis -SQL Server 2005

    Agree with all the above.

    You should look upon log shrinking as a last resort and even then you want to make sure that there is a valid reason. Its not...

  • RE: How many Error Log files and hwo to check locations?

    SQL stores logs for the engine and the agent.

    The logs are generally stored in the LOG folder of the engines data root folder (eg c:\program files\microsoft sql server\mssql.1\mssql\log).

    You can also...

  • RE: ACtive-ACtive Clustering SQL server 2005

    jamesn 89076 (10/12/2010)


    TheSQLGuru (10/12/2010)


    A/A clusters are a good way to maximize hardware investment. One thing I advise my clients is to have a monitoring agent of some flavor trigger...

  • RE: ACtive-ACtive Clustering SQL server 2005

    Markus (10/12/2010)


    Microsoft pushes Clustering as the next best thing to sliced bread. In my experience we have had more downtime with clusters than with a regular server. Clusters...

  • RE: ACtive-ACtive Clustering SQL server 2005

    Essentially if you have two servers and want to leverage the most out of them you would use an active/active (if one fails the instance fails over to the second...

  • RE: Backups for Stand by databases

    You cant backup the secondary database. It is in RESTORE mode and cant be backed up or accessed!

  • RE: Run SQL script with SQLCMD

    Maybe i am coming in on this a bit late but this thread which i worked on gives you a good example:

  • RE: MSSQL Server 2005 mirroring

    A colleage just told me, that it doesnt need to be licensed for the first 30 days. So as long as you get the initial principal back online within 30...

  • RE: MSSQL Server 2005 mirroring

    You do not need a license for your mirroring server (assuming you dont run both servers instances for user access at the same time).

    What that means is if you are...

  • RE: Need SQL memory advice

    So if i understand you, your OS is using 95% of your 48GB or 95% of what it is allocated?

    The thing to keep in mind is that at 80-90% memory...

  • RE: Maintance Plan

    Krasavita (8/19/2010)


    Here is the error:

    Unable to start execution of step 1 (reason: line(1): Syntax error). The step failed. Unable to start execution of step 1 (reason: line(1): Syntax error)....

  • RE: Need SQL memory advice

    I agree with David.

    If cost is a consideration then just lower the amountn available to SQL (it is quite resiliant).

    However a word on adding memory, we have a cluster with...

  • RE: Kill all Connection only when they are locking a table

    Rem70Rem (8/16/2010)


    Hi Adam,

    Thanks for your reply. Currently I am running something similar every night to kill my connection. I would like to *** the table level to this....

  • RE: Kill all Connection only when they are locking a table

    This works to Kill users of a set database, sure you could reconfigure to do table lever:

    CREATE PROCEDURE usp_killDBConnections @DBName varchar(50), @withmsg bit=1

    AS

    SET NOCOUNT ON

    DECLARE @spidstr varchar(8000)

    DECLARE @ConnKilled smallint

    SET @ConnKilled=0

    SET...

  • RE: General Network Error

    Agree with Ashish.

    Try reconstructing guery to commit more regularly (run in smaller chunks). If possible you may want to consider restarting your instance and then running query straight away (before...

Viewing 15 posts - 181 through 195 (of 619 total)