Forum Replies Created

Viewing 15 posts - 5,326 through 5,340 (of 9,253 total)

  • 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...

  • 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....

  • 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...

  • 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...

  • 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

  • RE: Litespeed full db backup error

    laddu4700 (7/14/2012)


    Hi, We are using Litespeed for backups.

    User db full backup job failed with below error. Anybody encountered this error. please let me know.

    Message

    Executed as user: domain\adsi. Microsoft (R) SQL...

  • RE: What is the best way to encrypt SSNs and FEIN Numbers (Employer Tax ID Number) in SQL Server 2008?

    GilaMonster (7/14/2012)


    Welsh Corgi (7/14/2012)


    When you say for the second do you mean that I would need a 3rd party tool for the SSIS Transfer of Data?

    As I said, SQL column...

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

    JJ-469859 (7/14/2012)


    I am correct in my assumption that we have to use either a fileshare or shared disk to cast the tiebreaker vote correct? The default setup does not work...

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

    Most of the cluster information is available from the Windows cluster itself, What information do you require?

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

    JJ-469859 (7/13/2012)


    According to my testing, people are in for a rude awakening with using AlwaysOn Availability groups with the default settings for certain scenarios. For instance, according to my testing...

  • RE: Upgrade to 2012

    Bobby Glover (7/12/2012)


    Thinking of upgrading to SQL 2012 maybe early next year, are there any GOTCHAs or known issues with 2012.

    Which version are you upgrading from?

  • RE: backup index

    laddu4700 (7/13/2012)


    how to backup the sql 2008 database indexes? thanks

    Backup your database(s) regularly and all of these objects will be backed up 😉

  • RE: Whole Disk Encryption and TDE

    TheSQLGuy (7/12/2012)


    Security mgr wants to put PGP Whole Disk Encryption on all volumes of one of my SQL 2008 R2 boxes. The databases are already encrypted with TDE, but...

  • RE: Log shipping error

    savethytrees (7/12/2012)


    Run the following queries to find which file was the last one to be copied and which file was the last one to be restored.

    The following query will give...

  • RE: Disk Alignment best practice - Help !!

    you're welcome 😉

Viewing 15 posts - 5,326 through 5,340 (of 9,253 total)