Forum Replies Created

Viewing 15 posts - 7,786 through 7,800 (of 9,241 total)

  • RE: SQL Server 2005 Installation Problem - Service won't start as part of install

    are there any errors in the Windows event log?

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

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

  • RE: Run SQL script with SQLCMD

    you will also need to issue a GO statement to signal the end of the batch and execute the statements 😎

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

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

  • RE: SQL Cluster with Transactional Replication

    mikes84 (8/17/2010)


    Thanks for the response Perry!

    you're welcome 😉

    mikes84 (8/17/2010)


    I'm not sure I understand the difference between transactional replication and database mirroring,

    The 2 are vastly different. keeping it simple (forgetting...

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

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

  • RE: Copy Tables between Multiple Schemas

    Hi John

    this would be a lot better

    DECLARE @NewSchema varchar(15)

    SELECT @NewSchema = 'pez'

    SELECT 'SELECT * INTO [' + @NewSchema + '].[' + t.[name] + '] FROM dbo.[' + t.[name] + ']'

    FROM...

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

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

  • RE: Log Shipping Shrink File

    Rajat Jaiswal-337252 (8/16/2010)


    Hi Thanks Jeffery,

    I just want to reduce log file size because there is size issue on my production database drive.

    and the log become 20 GB to 30 GB...

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

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

  • RE: will maintenance tasks like(checkdb,index rebuild,statsupdate) and shrink file also run on the secondary database.

    vamshikrishnaeee (8/17/2010)


    3.shrink file -------------

    This should be a one time operation, don't make a routine of it!

    If your files continuously grow to these sizes maybe you should increase your disk space...

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

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

  • RE: Default Server Collation for SQL - does it depend on the O/S version (standard vs. enterprise)?!

    mphilippopoulos (8/16/2010)


    Perry Whittle (8/16/2010)


    Correct, SQL Server setup inspects the server locale during install and selects a collation based on the regional settings. It is important to set these correctly during...

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

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

  • RE: Copy Tables between Multiple Schemas

    You'd be better off making the DNS entries CNAME records pointing to the actual computername as this will not change whereas IP addresses can quite easily!

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

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

  • RE: Copy Tables between Multiple Schemas

    to copy table definitions (no indexes or PK's ,etc though) and data use

    select * into schema.newtable from dbo.oldtable

    for just the table definitions use

    select * into schema.newtable from dbo.oldtable where 0...

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

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

  • RE: Default Server Collation for SQL - does it depend on the O/S version (standard vs. enterprise)?!

    Correct, SQL Server setup inspects the server locale during install and selects a collation based on the regional settings. It is important to set these correctly during OS deployment!

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

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

  • RE: SQL Cluster with Transactional Replication

    mikes84 (8/16/2010)


    Hi, I have a scenario that I'm not sure will fully work, but I'm hoping to get some of your feedback to see if it's realistic.

    We have a piece...

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

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

  • RE: Add a node to existng cluster setup - sql server 2008

    gmamata7 (8/16/2010)


    While installing sql server 2008 using setup.exe, do we need to provide the virtual server name & sql server instance name again?

    please advice how that works?

    and also what need...

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

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

  • RE: Should sql be installed by the account that will be running it?

    the service account should be low permisson. Setup grants all necessary permissions to the account (logon as service, etc) during install hence why you need to execute setup with admin...

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

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

  • RE: Uninstall an instance of MS SQL server 2005

    your welcome.

    uninstalling is fairly straight forward via the wizard, provided you don't hit any problems!

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

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

  • RE: Uninstall an instance of MS SQL server 2005

    throneofmight (8/11/2010)


    Any ideas on what is required to uninstall a SQL2005 instance that is running in a clustered set of servers?

    launch the installer from add\remove programs.

    select the clustered database engine...

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

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

Viewing 15 posts - 7,786 through 7,800 (of 9,241 total)