Forum Replies Created

Viewing 15 posts - 8,146 through 8,160 (of 9,241 total)

  • RE: Service Pack for SQL 2005

    test the SP3 first on a test sql server to make sure it doesnt break anything!

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

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

  • RE: Where to create the login and user account

    river1 (3/24/2010)


    I need to create a login and a user account in several databases using t-sql

    I need to know where (in wich database) to create the login and the...

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

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

  • RE: downgrade a database from sql2008 64-bit to sql2005 32-bit

    if you script this yourself just remember to disable or remove any foreign keys, triggers, etc first. Create the base schema (Tables) and load all the data then apply any...

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

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

  • RE: Table level backup

    Ratheesh.K.Nair (3/24/2010)


    Hi Experts,

    Is it possible to take a table level backup?

    TIA

    Hi

    if you want just data and structure then use the following for a quick and dirty

    select * into newtable from...

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

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

  • RE: Sql Server 2008 Installation

    if you run the root SETUP.exe it will detect your architecture and launch the appropriate installer. You can also see the architecture by clicking options on the left menu in...

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

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

  • RE: 881223 - How to add a Share Disk resource to a cluster?

    is this a windows 2003 or windows 2008 cluster?

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

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

  • RE: Trading in xp_cmdshell for SQLCLR (Part 1) - List Directory Contents

    Jeff Moden (3/22/2010)


    It's a real shame that we have to try to rewrite that which works so well...

    [font="Arial Black"]Dir c:\*.* /s /b[/font]

    Good old DOS Jeff, you can't beat it can...

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

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

  • RE: Adding an instance to a SQL2008 Cluster

    Scott Wise (3/22/2010)


    Perry,

    I really appreciate the follow up. Isn't what you are saying to do just creating a new cluster?

    No, it is creating a new clustered instance 😉

    there is...

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

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

  • RE: Restore Permissions after database refresh

    newbie2sql (3/19/2010)


    Hi Perry Whittle

    Solution you had given me is correct for my solution. Currently I am checking the permissions and...

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

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

  • RE: HELP= Rebuild index & Update STATISTICS

    yes, that goes without saying!

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

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

  • RE: Adding an instance to a SQL2008 Cluster

    OK, i made this real easy. The screenshots below shows the registry entries created when installing SQL Server and the instance configuration in the installer. Notice the default instance (MSSQLSERVER)...

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

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

  • RE: Restore Permissions after database refresh

    i dont see whats wrong with my script?? :ermm:

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

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

  • RE: HELP= Rebuild index & Update STATISTICS

    As Gail says "no commit, no dice" 😉

    it's also worth noting if the database is in simple or bulk-logged recovery the create\alter index is not fully logged!

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

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

  • RE: Adding an instance to a SQL2008 Cluster

    GTR (3/18/2010)


    Perry, are sure that will work on cluster?

    http://social.msdn.microsoft.com/Forums/en/sqlsetupandupgrade/thread/906a8c25-ce3c-402b-9a06-648bd83bdfde

    Scott, i think if you need two instances on cluster then you should go for Active\Active clustering with two named instances.

    you...

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

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

  • RE: Restore Permissions after database refresh

    try this

    --uncomment the where clause and specify a database user

    --to get permissions for a single account

    USE yourdbhere

    SELECT

    'Permission "' + CONVERT(NVARCHAR(10), permission_name) COLLATE Latin1_General_CI_AS + '" "' +

    case CONVERT(NVARCHAR(10),...

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

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

Viewing 15 posts - 8,146 through 8,160 (of 9,241 total)