Forum Replies Created

Viewing 15 posts - 5,311 through 5,325 (of 9,244 total)

  • RE: Rebuilding performance counters

    sqlnaive (7/17/2012)


    Does rebuilding the performance counters affect the SQL databases ? Should thee be some kind of tests done post rebuld ?

    It will require a reboot so plan for that

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

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

  • RE: SQL Server 2008 R2 SP1 Install failed

    Damian-167372 (7/11/2012)


    i was thinking to completely un-install the sql instance and not to remove the node from the cluster

    no, just run setup and remove the node (which uninstalls just...

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

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

  • RE: tran log backup confused 2.5gb log file but 70gb log backup size

    lawson2305 (7/16/2012)


    ok I just don't get it. They are back up to 66GB again.

    I run a tran backup and shrink every day. I append the backup daily except...

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

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

  • RE: Instance didn't come up after server reboot.

    check the windows application log, there must be something in there.

    Try starting the service manually and check the app log to

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

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

  • RE: SQL 2012 AlwaysOn Node/File Share Quorum Majority

    JJ-469859 (7/16/2012)


    Let me put this another way. Say we use the default (no fileshare/disk vote) setup in this three node cluster with one node being in the DR data center....

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

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

  • RE: How to check cluster config with T-SQL queries

    Perry Whittle (7/13/2012)


    What information do you require?

    ??

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

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

  • RE: which is best method for upgrade database 650GB?

    ananda.murugesan (7/16/2012)


    With 650 GB database size run these two commands, should take more time to finish. how to reduce the time during completion of these two commands.

    Short of deleting all...

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

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

  • RE: 2008 and 2005 on same pc

    did you actually instal SQL Server 2008 database engine or just client tools, without knowing the options you selected its impossible to say, doesn't look like 2008 instance is installed.

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

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

  • RE: which is best method for upgrade database 650GB?

    You understand this?

    Perry Whittle (7/16/2012)


    run DBCC UPDATEUSAGES and then DBCC CHECKDB WITH DATA_PURITY, check the output of these queries come back totally clean, if not you'll have some work to...

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

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

  • RE: Trying to create cetificate in SQL 2008 R2 gives error

    Shabnam Gupta (5/17/2012)


    so you have to open the master key to create a certificate?

    What does the following query return?

    select name, is_master_key_encrypted_by_server from sys.databases

    where database_id = 1

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

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

  • RE: 2008 and 2005 on same pc

    forumlogger (7/16/2012)


    Whats better..

    Uninstall 2008 and start again

    or

    Can I create a new instance for 2008 ?

    Thanks

    Open up services.msc and check what you have listed for SQL Server services. Post a screen...

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

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

  • RE: 2008 and 2005 on same pc

    forumlogger (7/16/2012)


    I already had 2005 installed with a number of databases on my PC. Someone asked me to look at a database problem they had so sent me a script....

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

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

  • RE: which is best method for upgrade database 650GB?

    ananda.murugesan (7/14/2012)


    Hi,

    old verision

    OS -win 2003 enterprise edition

    DB -SQL Server 2000 enterprise edition with sp4

    DB Size - 650GB

    New version

    OS -win 2008 R2 enterprise edition

    DB -SQL Server 2008 R2 enterprise edition with...

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

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

  • RE: which is best method for upgrade database 650GB?

    As vikrantspatil has pointed out you need to ensure beforehand that application compatibility is suitable for SQL server 2008 R2.

    The other action i would perform first is to take a...

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

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

  • RE: How do I script out jobs names in a server

    selectname AS JobName

    , SUSER_SNAME(owner_sid) AS JobOwner

    from msdb.dbo.sysjobs

    or you could join msdb.dbo.sysjobs to master.sys.server_principals like so

    SELECTj.name AS JobName

    , sp.name AS JobOwner

    FROM msdb.dbo.sysjobs j INNER JOIN

    master.sys.server_principals sp ON j.owner_sid = sp.principal_id

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

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

Viewing 15 posts - 5,311 through 5,325 (of 9,244 total)