Forum Replies Created

Viewing 15 posts - 121 through 135 (of 327 total)

  • RE: SQL Server Port Number Identifier

    anand13685 (2/16/2011)


    If you have access to SQL server error logs...which any DBA would....just check the time when the SQL server was last started, and in the startup parameters, it gives...

  • RE: SQL Server Port Number Identifier

    Thordog (1/21/2011)


    Rudy Panigas (1/21/2011)


    The code will not work on a cluster unless you run it from the node(s) and not from the virtual SQL server.

    Give it a try and...

  • RE: Cloud Hacking

    If your SQL servers are in a data center, say in your building, isn't that a "Corporate Cloud"?

    I think the cloud will go the way of out sourcing. A...

  • RE: Microsoft SQL Server Error Log Scanning

    Sarab. (2/15/2011)


    Great Article Rudy.

    anyways people can also use XP_ReadErrorLog 0,1,'string_you_want_To_search'

    like xp_readerrorlog 0,1,'error'

    provided you are using SQL Server 2005+ versions

    for earlier version this would be a good option.

    Thanks Sarab.

    Nicely done....

  • RE: Microsoft SQL Server Error Log Scanning

    michael.wanke (2/14/2011)


    I do like the idea of removing the cursor. Either an update as already suggested or the SQLServerName column could be changed to use a default:

    [SQLServerName] [nvarchar](150) NULL...

  • RE: Microsoft SQL Server Error Log Scanning

    Willem Gossink (2/14/2011)


    Not knowing enough about SSIS, I devised another solution in which a central (management) server retrieves SQL error logs from managed servers and stores them in a central...

  • RE: Microsoft SQL Server Error Log Scanning

    ben.rosato (2/14/2011)


    What's the reason behind running an insert statement with EXEC? That's a lot of unnecessary work. I hope you don't code all you procedures this way.

    This code was...

  • RE: Microsoft SQL Server Error Log Scanning

    alen teplitsky (2/14/2011)


    thx

    i've been meaning to add this to my daily data collection. i'll probably just change the process to use SSIS to import data for numerous servers into a...

  • RE: Microsoft SQL Server Error Log Scanning

    abacrotto (2/14/2011)


    I'm sorry for asking something that simple. Why would you use a Cursor and a loop for updating the server when you can use an SQL UPDATE statement instead...

  • RE: Microsoft SQL Server Error Log Scanning

    hakkie42 (2/14/2011)


    Aren't you missing a

    USE [ErrorLogStorage]

    GO

    in the database creation script? When I ran it, it created the ErrLogData table in master...

    Apart from that, a smart solution: why struggle with...

  • RE: Rebuild SQL Server Master Databases in Less than 5 Minutes

    nick.welham (2/3/2011)


    Two questions, if someone could help me please!

    1. Does the Master DB contain the server Master encryption key data or should I add this separately?

    2. I know the Master...

  • RE: Cloud Hacking

    I think companies will use cloud computing to off load the security liability. If the data is lost/stolen they can then put the blame on the cloud computing supplier and...

  • RE: Rebuild SQL Server Master Databases in Less than 5 Minutes

    Markus (2/3/2011)


    I try and do this after a patch or when I know I have an outage window. It is always good to have an easy way to get...

  • RE: Rebuild SQL Server Master Databases in Less than 5 Minutes

    mohammed moinudheen (2/3/2011)


    Rudy,

    The title of this article is really catchy.

    Regarding this section: It's All Proactive

    You are referring to a SQL Server instance which is running fine right?

    I am assuming...

  • RE: Rebuild SQL Server Master Databases in Less than 5 Minutes

    Hello everyone,

    Thanks for all your comments. Looks like some people like and dislike the article but this is to be expected.

    Apparently some are commenting that the article name is misleading....

Viewing 15 posts - 121 through 135 (of 327 total)