Forum Replies Created

Viewing 15 posts - 9,016 through 9,030 (of 9,244 total)

  • RE: Backupdevice

    use the SP_Addumpdevice stored proc, syntax is as follows

    'type', 'device name', 'drive:\path\file'

    type is either disk or tape

    device name is the logical name you want to use

    drive:\path\file should be self explanatory

    -----------------------------------------------------------------------------------------------------------

    "Ya can't make an omelette without breaking just a few eggs" 😉

  • RE: SQL Server 2005 64 bit

    which apps in particular?

    -----------------------------------------------------------------------------------------------------------

    "Ya can't make an omelette without breaking just a few eggs" 😉

  • RE: Change DB and Object owner

    use this handy script to change object owner to another user for objects ion the database

    select 'exec sp_changeobjectowner '''+user_name(Uid)+'.'+name+''','' ''' /*owner to assign to, dbo for example*/

    from sysobjects

    where user_name(uid) <>...

    -----------------------------------------------------------------------------------------------------------

    "Ya can't make an omelette without breaking just a few eggs" 😉

  • RE: Where to start performance tuning

    search this site for some of Brad McGhee's tutorials, they're very helpful

    -----------------------------------------------------------------------------------------------------------

    "Ya can't make an omelette without breaking just a few eggs" 😉

  • RE: heavy load of CPU constantly after upgrade to sql server 2005 sp2

    as a side note BOL also recommends to update usages too using

    dbcc updateusage

    I've already seen a similar problem on a couple of databases i upgraded recently.

    -----------------------------------------------------------------------------------------------------------

    "Ya can't make an omelette without breaking just a few eggs" 😉

  • RE: Warning yellow sign when I open my SSMS :crying:

    glad you're all sorted 😉

    -----------------------------------------------------------------------------------------------------------

    "Ya can't make an omelette without breaking just a few eggs" 😉

  • RE: Altering multiple columns

    can only be done for adding columns as far as i know

    -----------------------------------------------------------------------------------------------------------

    "Ya can't make an omelette without breaking just a few eggs" 😉

  • RE: SQL Server 2005 and VMware

    Rod at work (7/17/2008)


    We've got a new server purposed to be our new production database server. The system administrator would like to put VMware onto this machine and run...

    -----------------------------------------------------------------------------------------------------------

    "Ya can't make an omelette without breaking just a few eggs" 😉

  • RE: SQL Server 2005 and Sysprep - again

    you should always rename the server before SQL is installed.

    Un install SQL server, rename the server then re install

    -----------------------------------------------------------------------------------------------------------

    "Ya can't make an omelette without breaking just a few eggs" 😉

  • RE: SQL Server 2005 installation

    virtual server enterprise will quite happily allow virtual sql servers to run, in fact it is possible to set up a 2 node sql cluster 😉

    -----------------------------------------------------------------------------------------------------------

    "Ya can't make an omelette without breaking just a few eggs" 😉

  • RE: Pro/Con of setting up a NEW MSSQL Server for a single vendor DB vs. attaching to our exsiting SQL Server?

    under 10 user connections!

    i would home on an existing instance

    -----------------------------------------------------------------------------------------------------------

    "Ya can't make an omelette without breaking just a few eggs" 😉

  • RE: Verifying File Integrity

    have the backup verify the files at backup time. if storing on a backup on a network,

    backup to local drive first then copy to network

    -----------------------------------------------------------------------------------------------------------

    "Ya can't make an omelette without breaking just a few eggs" 😉

  • RE: Convert a existing SQL Server 2000 database to 2005

    when you attach\restore a db to SQL2005, i'm pretty sure it runs DBCC CHECKDB as part of the upgrade!

    You would certainly be advised to update the stats to sql2005 stats

    -----------------------------------------------------------------------------------------------------------

    "Ya can't make an omelette without breaking just a few eggs" 😉

  • RE: Moving distmdl.mdf and distmdl.ldf files...

    you can also use the alter database modify file command to move the files, make sure they're in the same location as MASTER as already stated

    -----------------------------------------------------------------------------------------------------------

    "Ya can't make an omelette without breaking just a few eggs" 😉

  • RE: Move one databse from one server to other one, and renamed it

    Junior_DBA (7/21/2008)


    1) offline DB

    2) detach DB

    for future reference;

    once the database is marked offline you do not need to detach the database you can just go ahead and copy the files...

    -----------------------------------------------------------------------------------------------------------

    "Ya can't make an omelette without breaking just a few eggs" 😉

Viewing 15 posts - 9,016 through 9,030 (of 9,244 total)