Forum Replies Created

Viewing 15 posts - 8,221 through 8,235 (of 9,244 total)

  • RE: Edition Upgrade to a SQL 2008 Cluster

    have you tried running it from the DVD?

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

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

  • RE: Edition Upgrade to a SQL 2008 Cluster

    where are you running the setup from CD, HDD, etc?

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

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

  • RE: Get the list of db and db owner

    Adam Bean (4/30/2009)


    SELECT

    [name]AS [DBName]

    ,SUSER_SNAME([sid])AS [DBOwner]

    FROM [master].[dbo].[sysdatabases]

    ORDER BY 1

    this should do it

    select [name] as [DB Name], SUSER_SNAME([owner_sid]) AS [DBOwner] from sys.databases

    order by 1

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

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

  • RE: Edition Upgrade to a SQL 2008 Cluster

    Hi

    passive nodes first, check this link for further details

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

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

  • RE: Truncate/Delete

    rgillings (4/16/2009)


    Truncate also will RESEED a table.

    that is correct

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

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

  • RE: Comparision between SQL 2005 STD and SQL 2005 Enterprise

    the 2 biggest differences between std and ent are online index rebuilding and partitioning. Also AFAIK page level restores are only available in sql2005 ent

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

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

  • RE: Truncate/Delete

    also, if i remember correctly truncate will reset any seed\incremental value on ID columns,etc

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

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

  • RE: getting logical drives from server

    yes, i thought of that but running it through SSMS the query takes a short while and thats just on my laptop. Imagine on a server with 4 or more...

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

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

  • RE: getting logical drives from server

    RBarryYoung (4/13/2009)


    I apologize, but unfortunately, because of conflicts between VS 2005/.net 2.0 and VS 2008/.net 3.5, my SMO dev environment is down right now so I cannot effectively test anything.

    I...

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

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

  • RE: Database keeps switching from full recovery Model to simple recovery model

    this should cut down on the amount of procedures returned

    select 'exec sp_helptext ' + name from sys.objects where type = 'P'

    and is_ms_shipped <> 1

    order by name

    you dont want...

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

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

  • RE: memory less used

    presumably you are using sql2005 standard x64?

    you may want to set the min memory to something sensible!

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

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

  • RE: getting logical drives from server

    hmm ok, the enumavailablemedia is pretty straight forward but i cant find any usage info for enumdirectories. Currently my treeview is populated with 2 logical drives and some folder entires...

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

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

  • RE: Database keeps switching from full recovery Model to simple recovery model

    set up a simple server side trace and leave it running for a day or so. Should be able to find out/what is changing the status!

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

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

  • RE: Remote connection issues with SQL Server 2005

    has the TCP/IP port number been changed under TCP/IP settings?

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

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

  • RE: Moving SQL System databases

    dobrien (3/11/2008)


    -c(still don't know what this is for)

    David, this parameter stops the service being updated (i.e. running/stopped/etc) in the services.msc

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

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

Viewing 15 posts - 8,221 through 8,235 (of 9,244 total)