Forum Replies Created

Viewing 15 posts - 8,881 through 8,895 (of 9,241 total)

  • RE: Restore same DataBase with different Names

    Use something along the following lines

    RESTORE DATABASE MYNEWDBNAME FROM DISK = 'D:\PATHTOFILE\BACKUPFILE.BAK'

    WITH MOVE 'MDF LOGICAL FILENAME' TO 'F:\NEWPATH\NEWFILENAME.MDF',

    MOVE 'LDF LOGICAL FILENAME' TO 'E:\NEWPATH\NEWFILENAME.LDF',

    RECOVERY

    Replace shouldnt be needed as the new physical...

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

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

  • RE: Transaction log shipping:target database always restoring

    when setting up log shipping it can have 1 of 2 states, WITH STANDBY or WITH NO_RECOVERY

    STANDBY is the first. The database is in a read only state and clients...

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

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

  • RE: Win98 accessing a server with SQLExpress 2005

    you would probably need the latest MDAC update for the SQL driver

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

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

  • RE: SS2005 Error Message

    you could also run a repair of the .NET framework via add\remove programs

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

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

  • RE: Clustering

    might i suggest if you have access to a virtualisation technology have a go at clustering on a couple of test servers before implementing. Virtual server Enterprise 2005 will happily...

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

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

  • RE: Archiving Data

    generally consult your application vendor!

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

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

  • RE: moving logins from one server to another

    sandhyarao49 (9/16/2008)


    Hi,

    I want to move the logins from one server to another server.

    Could anyone suggest on this in a simple way.

    Thanks,

    Sandhya

    depends on the flavour of source and target sql server

    the...

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

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

  • RE: .MDF, .LDF file moving

    Hi

    you can also do this by setting the database to offline, use the alter database modify file statement and then set back to online after.

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

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

  • RE: Update Stats with full scan on all tables in all databases

    sunshine (9/15/2008)


    the previous statement must be terminated with a semicolon.

    this message is fairly descriptive!! The USE statement and exec must be separated by a semi colon like so

    SELECT @execmd =...

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

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

  • RE: What Edition of Windows for 8GB+ memory

    also, SQL2005 is able to address as much RAM as the NOS will allow 😉

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

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

  • RE: Updating more than one rows at a time

    Ninja's_RGR'us (9/15/2008)


    Like I tested it and in this case exists is faster than in?

    thats what i'm asking

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

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

  • RE: What Edition of Windows for 8GB+ memory

    Dana Bibeault (9/15/2008)


    Can I install Windows Enterprise and run SQL 2005 Standard Edition?

    that will be just fine, you'll need Enterprise edition of Windows server to address the extra RAM as...

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

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

  • RE: SQL DBA Contracting

    Hi

    i'm contracting at present, checkout Jobbserve and you'll see plenty of SQL opportunities both home and abroad

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

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

  • RE: Two databases with the same physical file names and locations

    Steve

    check with Esri but i'm sure changing the logical filenames will make no difference. The SDE database will be referenced by the database name only not by logical filename.

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

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

  • RE: How do I determine Free & Total Space for disk drives, using T-SQL?

    Grant Hoerz (9/11/2008)


    This is a VBScript I've been running for a while. It takes each server name listed in a txt file, connects, dynamically grabs the drive info, and then...

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

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

Viewing 15 posts - 8,881 through 8,895 (of 9,241 total)