Forum Replies Created

Viewing 15 posts - 8,701 through 8,715 (of 9,241 total)

  • RE: SQL SERVER 2005 Std edition license

    for corporate there will be an anuual licence cost, it wont be as high as the intial purchase but still needs to be paid.

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

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

  • RE: RAID configurations

    RAID 5 will only tolerate 1 disk failure at any time even if there are 3 spares. RAID 50 does allow multiple failures AFAIK but RAID 10 is a better...

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

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

  • RE: SQL 2005-64 bit

    smunson (12/3/2008)


    Thanks Gail. If you could, though, can you at least point me to the other posts about what priveleges one should be granting the accounts to be...

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

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

  • RE: Caught in Wrong Job ....

    Ahmad Osama (9/22/2008)


    work on Team foundation server and VSS....Does these application hav any future

    recommend they bin VSS and get Subversion instead 😉

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

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

  • RE: Integrity Check -- DBCC

    it sounds very much like there are foreign keys and they are missing column information.

    i would query the system views and find out which foreign keys are affected. Drop them...

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

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

  • RE: RAID configurations

    RAID 10 if you can RAID 5 if you want to keep it simple, RAID 0+1 involves mirroring over a striped set and is not as tolerant as RAID 10

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

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

  • RE: why here 80 folder?

    the 80 folder contains numerous backward compatability components

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

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

  • RE: comparing physcial file name of the database

    to get a list of database and filenames use

    select name, fileid, filename from sys.sysaltfiles

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

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

  • RE: cannot connect to local server

    you will need to install either SQL2005 express or developer. Enterprise and standard are for server systems only

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

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

  • RE: Different Collation Settings for system and user databases!!!!

    install a new instance with the correct collation and transfer any objects across, then remove the original instance. Pay close attention to the installer and select the right collation, check...

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

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

  • RE: how to configure sql server memory

    GilaMonster (11/30/2008)


    You've left a lot of important information out.

    you may or may not need to configure the /3GB switch in the boot.ini (i assume you meant this file and not...

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

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

  • RE: Page Splits Per Second & Fill factors

    Simon

    not so much bad indexing, but yes they are related. The fill factor is defined as a default at server level which is usually 0 and means 100%. When rebuilding...

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

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

  • RE: Connecting SQL Server 2005 from windows 98

    what is your MDAC version

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

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

  • RE: Profiler Trace running

    to make the trace easier to read\sort dump the output to a sql table

    SELECT * INTO tablename

    FROM ::fn_trace_gettable('d:\path to trace\tracename.trc', default)

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

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

  • RE: cannot insert duplicate primary keys

    the compound key has to be unique, you can have the same value in single columns as long as the combined values are unique

    col1 ...

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

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

Viewing 15 posts - 8,701 through 8,715 (of 9,241 total)