Forum Replies Created

Viewing 15 posts - 1,291 through 1,305 (of 3,008 total)

  • RE: Blowing off the SAS70 auditors

    Indianrock (8/5/2010)


    In our case the auditor was asking basic questions about restoring backups from tape occasionally to verify their integrity and the manager was giving him the evil eye as...

  • RE: Blowing off the SAS70 auditors

    There is no law that says that you have to answer their questions, but it can cause problems.

    SAS 70 is an auditing standard designed to enable an independent auditor to...

  • RE: size of table in SS2005

    This script should give you the information you want.

    Script to analyze table space usage within a database

    http://www.sqlteam.com/forums/topic.asp?TOPIC_ID=61762

  • RE: Determine Max memory usage SQL Server requires

    Try this query:

    select

    [OBJECT_NAME]= left(quotename(rtrim(a.[OBJECT_NAME]))+

    quotename(rtrim(a.[COUNTER_NAME]))+

    case

    when rtrim(a.[INSTANCE_NAME]) = '' then ''

    else quotename(rtrim(a.[INSTANCE_NAME])) end

    ,60),

    [Memory GB]= convert(decimal(10,3),round((a.[CNTR_VALUE]+0.000)/(1024.000*1024.000),3)),

    [Memory MB]= convert(decimal(10,3),round((a.[CNTR_VALUE]+0.000)/(1024.000),3))

    from

    master.dbo.sysperfinfo a

    where

    a.[OBJECT_NAME] in ('SQLServer:Memory Manager')and

    a.[COUNTER_NAME] in ('Target Server Memory (KB)','Total Server Memory (KB)' )

    Results:

    OBJECT_NAME ...

  • RE: PSTOOLS (PsExec) and SQL Server Agent 2008

    I believe the latest version of PSTOOLS brings up a license dialog the first time you run it, so you might try logging into that server with the service account...

  • RE: How to bulk load from a file that has spaces in its name ?

    You can use the 8.3 compatible name for the directory, PROGRA~1 for Program Files in the example below:

    dir \\MYSERVER\c$\pr* /x

    Volume in drive \\MYSERVER\c$ is MYVOLUME

    Volume Serial Number is...

  • RE: Drop Database Question

    kmonroe (7/30/2010)


    I just wanted to throw this out there...

    I think I have a third party vendor that is trying to give me the run around about a process that their...

  • RE: What is taking up space in my database?

    These scripts will give you infomation on the size of your database files, including the used and unused space, and show the amount of space used by each table in...

  • RE: Index size.

    Sourav-657741 (7/31/2010)


    It is SQL 2000

    Use DBCC SHOWCONTIG

  • RE: how to capture database size

    These scripts should give you the information you are after.

    Get Server Database File Information for all databases on a server

    http://www.sqlteam.com/forums/topic.asp?TOPIC_ID=89058

    Script to analyze table space usage within a database

    http://www.sqlteam.com/forums/topic.asp?TOPIC_ID=61762

  • RE: True Load-Balancing Using SQL Server 2008.

    mangeshv (7/27/2010)


    Thank you so much both for the replies. I just wanted to clear the myth that is making the rounds that Load-balancing is possible with SQL Server 2008.

    Load-balancing can...

  • RE: True Load-Balancing Using SQL Server 2008.

    SQL Server 2008 has no true load balancing, meaning having multiple database servers actively updating the same database.

    There are possible ways to off load specific tasks to other servers. ...

  • RE: Thinking Time

    James Stover (7/26/2010)


    OK, this is going to come across really crude but....surely some of the best "thinking time" has to be sitting on the toilet. When else do you get...

  • RE: Order by Month properly not alphabetical

    In this example, I group by the first day of the month, order by that value, and extract year and month from that value.

    select

    [Year]= year(dateadd(mm,datediff(mm,0,Mydate),0)),

    MonthName= datename(month,dateadd(mm,datediff(mm,0,Mydate),0)),

    [RowCount]= count(*)

    from

    ( -- Random Test...

  • RE: Too old?

    I became a DBA when I was older than you, and I'm somehow managing to get by.

    There are projects that are so mismanaged that they become a death march that...

Viewing 15 posts - 1,291 through 1,305 (of 3,008 total)