Forum Replies Created

Viewing 15 posts - 1 through 15 (of 23 total)

  • RE: Free disk space on all servers?

    Robert,

    The limitation of xp_fixeddrives is that it doesnt return the size of the drive.

    I use srvinfo -ns. Its in the Resource Kit. The command returns lots of data but with some tsql,...

  • RE: function owner

    mom - I did create the function using domain\username. This username belongs to the 'system administrators' server role so I don't think permissions is the problem

    DavidT - I think you...

  • RE: To delete temp tables or not to?

    If you are using SQL2000, you could try the new table datatype. Check out 'Using Special Data' in BOL for an example.

  • RE: header record in file

    Thanks for the suggestion David.

  • RE: processes

    This may depend on what version of SQL Server you are using. On SQL2000, spids 1-50 are reserved for system processes.

    Having said that, I've just looked on a server here...

  • RE: Restore Table in SQL 2000

    You could place the table into its own filegroup. SQL2000 allows the restore of individual filegroups.

    Make sure you restore the table and its indexes and consider any referential integrity/foreign key...

  • RE: Transaction log Backup Fail

    Thats a hard question to answer. I think you need to look at the criticality of each system and what level of recovery your users would expect in the event...

  • RE: How Frequent Do you Perform Restoration Test

    I agree with the above comments. No test or standby server is very short-sighted.

    To get back to the original question. If you cant restore your backup, you could try

    "RESTORE...

  • RE: linked server status

    How about

    xp_cmdshell 'net view \\server_name'

    or

    xp_cmdshell 'ping server_name'

    Direct the output to a file and search for a string in the file

  • RE: Best Practices for Reboot Schedule

    Have you considered the practical issues ? For example

    1. If a server is accessed 24/7, what happens during downtime ? Can you warn all users in advance ?

    2. Are your...

  • RE: Performance of a Database Restore

    To help isolate why the restore is taking over 6 hours, copy the database dump file to disk and then re-try the restore. Note the time this restore takes. The...

  • RE: Obtaining total capacity for disk drive in T-SQL

    Try

    execute master..xp_cmdshell 'srvinfo -ns'

    which gives you disk capacity, used and free

    (Thanks to Bill from Walmart for this)

  • RE: The SQL Server Black Box

    We have an intermittent problem on one production server which leads to very slow response times for users. It happens 1-2 times per week so Black Box monitoring looked like...

  • RE: SQL 2000 SP3

    Sreeni - Good to read that you have a solution. My upgrades are also working with SP2 + security fix

  • RE: Error during upgrade from 6.5 to 2000

    Success !! The upgrade worked first time with SP2 + security fix applied.

Viewing 15 posts - 1 through 15 (of 23 total)