Forum Replies Created

Viewing 15 posts - 3,181 through 3,195 (of 3,232 total)

  • RE: Login Failed Error

    Are you sure this is not an intrusion attempt?  I am assuming that by 'Application Event Log', you mean the Windows Application event log and not a log that is...

    John Rowan

    ======================================================
    ======================================================
    Forum Etiquette: How to post data/code on a forum to get the best help[/url] - by Jeff Moden

  • RE: Using a variable to create a database

    You will have to use the variable name to create a dynamic SQL string and use sp_executesql. 

    declare @DBname varchar(20),

     @sqlstring nvarchar (4000)

    set @dbname = 'testme2'

    set @sqlstring = N'create database '...

    John Rowan

    ======================================================
    ======================================================
    Forum Etiquette: How to post data/code on a forum to get the best help[/url] - by Jeff Moden

  • RE: The Life Hackers

    Gloria Mark is a genius....reading her article was an interuption and it took me about 25 minutes to get back to work!!

    John Rowan

    ======================================================
    ======================================================
    Forum Etiquette: How to post data/code on a forum to get the best help[/url] - by Jeff Moden

  • RE: Naming cluster resources

    In the case where your routine will return the defaut instance resource name, I don't know as I don't know what method your routine is using to determine the resource...

    John Rowan

    ======================================================
    ======================================================
    Forum Etiquette: How to post data/code on a forum to get the best help[/url] - by Jeff Moden

  • RE: Memory Problem

    Is your slow response something new?  Is it only slow on this one specific server?  From a memory perspecitve, it does not look like you have AWE enabled.  With that...

    John Rowan

    ======================================================
    ======================================================
    Forum Etiquette: How to post data/code on a forum to get the best help[/url] - by Jeff Moden

  • RE: datetime - UTC - datetime

    What is the data type on the columns where your time is expressed with 10 numbers?

    John Rowan

    ======================================================
    ======================================================
    Forum Etiquette: How to post data/code on a forum to get the best help[/url] - by Jeff Moden

  • RE: Exception in the CmdExec subsystem

    Sorry I could not be of more help....

    John Rowan

    ======================================================
    ======================================================
    Forum Etiquette: How to post data/code on a forum to get the best help[/url] - by Jeff Moden

  • RE: datetime - UTC - datetime

    Play around with the GETUTCDATE() function:

     

    DECLARE @LocalDate DATETIME

    SET @LocalDate = GETDATE()

    -- convert local date to utc date

    DECLARE @UTCDate DATETIME

    SET @UTCDate = DATEADD(Hour, DATEDIFF(Hour, GETUTCDATE(), GETDATE()), @LocalDate)

    -- convert utc date to...

    John Rowan

    ======================================================
    ======================================================
    Forum Etiquette: How to post data/code on a forum to get the best help[/url] - by Jeff Moden

  • RE: Exception in the CmdExec subsystem

    I would suggest possibly using the job setup output file option to possibly catch more information as to why your .bats are periodically failing.  You may also want to write...

    John Rowan

    ======================================================
    ======================================================
    Forum Etiquette: How to post data/code on a forum to get the best help[/url] - by Jeff Moden

  • RE: Improving parallel data access throughput

    Oops, here's the presentation:

    http://support.microsoft.com/default.aspx/kb/895614

    John Rowan

    ======================================================
    ======================================================
    Forum Etiquette: How to post data/code on a forum to get the best help[/url] - by Jeff Moden

  • RE: Improving parallel data access throughput

    Colin,

    In your first post in this thread, you mentioned that you've seen Technet presentations.  I don't know if you've seen this one, so I'll post it anyway.  It talks about...

    John Rowan

    ======================================================
    ======================================================
    Forum Etiquette: How to post data/code on a forum to get the best help[/url] - by Jeff Moden

  • RE: Help with performance of a MegaQuery

    These forums are designed to provide a certain level of free help.  You may want to post your query and see what kind of responses you get.  Other hardware/storage/SQL...

    John Rowan

    ======================================================
    ======================================================
    Forum Etiquette: How to post data/code on a forum to get the best help[/url] - by Jeff Moden

  • RE: Exception in the CmdExec subsystem

    Can you post your .bat file?

    John Rowan

    ======================================================
    ======================================================
    Forum Etiquette: How to post data/code on a forum to get the best help[/url] - by Jeff Moden

  • RE: Databse Suspect Error - Please Help!

    I hope you have a good backup/recovery strategy as this will be your most likey approach.  Here is a quote from MSDN:

    TORN_PAGE_DETECTION

    This recovery option allows SQL Server to detect incomplete...

    John Rowan

    ======================================================
    ======================================================
    Forum Etiquette: How to post data/code on a forum to get the best help[/url] - by Jeff Moden

  • RE: Databse Suspect Error - Please Help!

    I would start by running resetting the suspect flag using: sp_resetstatus [ @DBName = ] 'database'.  Then run DBCC CHECKDB on all of your databases to see how big the...

    John Rowan

    ======================================================
    ======================================================
    Forum Etiquette: How to post data/code on a forum to get the best help[/url] - by Jeff Moden

Viewing 15 posts - 3,181 through 3,195 (of 3,232 total)