Forum Replies Created

Viewing 15 posts - 31 through 45 (of 2,436 total)

  • RE: Upgrade - SQL Server 2005 Standard SP2 64-bit to SQL Server 2012 Enterprise 64 bit

    I would just apply 2005 SP4 as a part of the process then go to 2012.

    This way you avoid any 'potential' licensing issues.

    RegardsRudy KomacsarSenior Database Administrator"Ave Caesar! - Morituri te salutamus."

  • RE: Remote Stop / Start - SQL Services

    the "sc" command does work remotely on 'other' servers - it is just a permissions issue.

    below is the first part of the command 'sc /?'

    DESCRIPTION:

    ...

    RegardsRudy KomacsarSenior Database Administrator"Ave Caesar! - Morituri te salutamus."

  • RE: Upgrade - SQL Server 2005 Standard SP2 64-bit to SQL Server 2012 Enterprise 64 bit

    what ??? no test server ???

    did I understand correctly that you want to do a production upgrade without testing it ?

    RegardsRudy KomacsarSenior Database Administrator"Ave Caesar! - Morituri te salutamus."

  • RE: Index Reorg vs Rebuild

    this is about as simple as it can get ...

    reorg wins over reindex for concurrency. reorg locks only 1-2 pages or 1-2 extents at a time as it executes as...

    RegardsRudy KomacsarSenior Database Administrator"Ave Caesar! - Morituri te salutamus."

  • RE: SQL 2012 Enterprise licensing

    Our volume price is for SQL 2014 (down-gradablke to SQL 2012) with SA.

    CPU cores are licensed in 2 packs.

    You have 16 cores so you need 8 - 2 packs.

    So your...

    RegardsRudy KomacsarSenior Database Administrator"Ave Caesar! - Morituri te salutamus."

  • RE: CU Failed however SQL Upgraded

    Let me guess ... the CU ran for longer than normal.

    If this is the case look at the SQL errorlog and you will see a series of messages in...

    RegardsRudy KomacsarSenior Database Administrator"Ave Caesar! - Morituri te salutamus."

  • RE: Member of Domain Admins account can not log into the server

    So I assume the entire error is: Error: 18456, Severity: 14, State: 11

    One other thing to check in AD is to see if the Domain Administrator group members are in...

    RegardsRudy KomacsarSenior Database Administrator"Ave Caesar! - Morituri te salutamus."

  • RE: msdb marked suspect error 3313

    Short of restoring from a known good backup you could try:

    http://technet.microsoft.com/en-us/library/ff713991(v=sql.105).aspx

    even though these steps are for SQL Server 2008 and are reallly meant for application databases...

    RegardsRudy KomacsarSenior Database Administrator"Ave Caesar! - Morituri te salutamus."

  • RE: sys tables grant access to sql user

    I would avoid using the public group. Try the following instead:

    use your_target_database

    go

    create role db_view_schema authorization [dbo]

    grant view definition on schema::[dbo] to [db_view_schema]

    go

    exec sp_addrolemember @rolename='db_view_schema', membername='security_account'

    go

    RegardsRudy KomacsarSenior Database Administrator"Ave Caesar! - Morituri te salutamus."

  • RE: SQL SERVER PATCHING USING SCCM

    Yes it is possible however I do not recommendd it.

    The reasons for not are:

    - SCCM downloads and schedule and executes the SP or CU, but the timing is not...

    RegardsRudy KomacsarSenior Database Administrator"Ave Caesar! - Morituri te salutamus."

  • RE: Page life expectancy

    IMHO any PLE value smaller than 1,000, let alone 300, is a serious issue if it stays there and never increases. We try and maintain 10,000 or better on all...

    RegardsRudy KomacsarSenior Database Administrator"Ave Caesar! - Morituri te salutamus."

  • RE: Need help with backup statement for a SQL Server 6.5 instance

    One additional note when dumping to devices in v6.5.

    You can specify a UNC (i.e. \\servrename\share\etc) when you create the dump device.

    However unless your network is as fast as lightening it...

    RegardsRudy KomacsarSenior Database Administrator"Ave Caesar! - Morituri te salutamus."

  • RE: The distribution agent failed to create temporary files in 'C:\Program Files\Microsoft SQL Server\120\COM' directory. System returned errorcode 5.

    Google is your friend.

    http://support.microsoft.com/kb/956032

    RegardsRudy KomacsarSenior Database Administrator"Ave Caesar! - Morituri te salutamus."

  • RE: SQL Mail

    SQL Mail on SQL 2000 - what a headache.

    Before you engage your Exchange folks I would suggest the 2 following actions:

    - reboot your server

    - drop and recreate your...

    RegardsRudy KomacsarSenior Database Administrator"Ave Caesar! - Morituri te salutamus."

  • RE: How do we turn off/on hyperthreading in sql server 2008 R2 ?

    Hyperthreading and its recommendation to turn it on or off has flip-flopped a number of times since the first Pentium Xeon chipset. We turn it off by default and have...

    RegardsRudy KomacsarSenior Database Administrator"Ave Caesar! - Morituri te salutamus."

Viewing 15 posts - 31 through 45 (of 2,436 total)