Forum Replies Created

Viewing 15 posts - 226 through 240 (of 254 total)

  • RE: SQL Server System Report

    That would be a good idea. Can you give me some of the output fields you'd like to be included / shown?

  • RE: SQL Server System Report

    You should see some areas of code that look similar to the following (partial code example below):

    CONVERT (VARCHAR (15), CONVERT (MONEY,

    You should be able to get around the error by...

  • RE: SQL Server System Report

    Unfortunately I don't work in an environment that uses partitions so I have nothing to test against. Not sure if I can help you any further. 🙁

  • RE: SQL Server System Report

    Try this:

    The line of the code which says:

    DB_NAME (MF.database_id) AS database_name

    Replace it with:

    MF.name AS database_name

    If that doesn't work, then try replacing it with:

    REPLACE (RIGHT (MF.physical_name, CHARINDEX ('\', REVERSE (MF.physical_name))),'\','') AS...

  • RE: SQL Server System Report

    Try adding one of these (think it should do the trick):

    MF.name AS logical_database_name

    or

    REPLACE (RIGHT (MF.physical_name, CHARINDEX ('\', REVERSE (MF.physical_name))),'\','') AS os_file_name

    Rememeber: You will need to update the @vXML_String and @vBody...

  • RE: SQL Server System Report

    Great suggestions. For point 1 I noticed this as well but still wanted to see them for my purposes (plus they fall off the list as we do cleanups of...

  • RE: SQL Server System Report

    Sorry, there is no 2000 version (and unlikely that I'll be making one).

  • RE: SQL Server System Report

    Hmmm... would need to see the output. Send it to me if you want (email address is in the script).

  • RE: SQL Server System Report

    Fantastic! Great to hear. 🙂

  • RE: SQL Server System Report

    Thanks for the feedback. Sorry it can't help you though. 🙁

  • RE: SQL Server System Report

    Can you give me some details such as what version of SQL Server you are using? Also, I know that if you are using some versions of IE that code...

  • RE: SQL Server System Report

    My pleasure! 🙂

  • RE: usp_who5

    Glad you liked it and I hope it helps you out. 🙂

  • RE: Date Calendar

    Yes, please do! 🙂

  • RE: Date Calendar

    Gracias!

Viewing 15 posts - 226 through 240 (of 254 total)