Forum Replies Created

Viewing 15 posts - 2,356 through 2,370 (of 2,436 total)

  • RE: Multiple backup devices using SQLmaint

    If you mean 'writing more than one backup file ('striping' the backup), then to my knowledge no. You need to write scripts in order to perform 'striped' backups.

    If you mean,...

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

  • RE: Server Name Change

    A stop/restart of SQL Server may be required too. If I remember correctly @@servername will still reflect the old name until this occurs even after the correct SP sequence to...

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

  • RE: The process could not create file ''''D:\Microsoft SQL Server\MSSQL\ReplDat\unc''''.

    We probably need a little bit more information in order to potentially assist in a diagnosis of the issue (and hopefully provide a potential solution) ...

    1) What were you trying to do ?...

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

  • RE: Deny Access to Builtin\Administrators

    Here's a script we implement as a site standard during initial server build:

     use master

     go

     exec sp_grantlogin 'DOMAIN\sv-sqlserver'    --> each of these domain user accounts

     exec sp_grantlogin 'DOMAIN\sv-sqlagent'     --> are in tyhe local...

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

  • RE: Multiple SQL Instances

    thanks for the response on the max number of named instances per server ...

    oh by the way here's the most important reason for multiple instances:

     'to compete with Sybase and...

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

  • RE: Gmail Invitations!

    gmail ? why not ...

    rudy.komacsar@porterhealth.org

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

  • RE: PLEASE I NEED HELP, HOW CAN I DO TO RESTORE THE MSDB

    Take a look at this link:

    http://support.microsoft.com/kb/304692/EN-US/

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

  • RE: Multiple SQL Instances

    I'm curious as to what the 'limit' of instances that can be created on a given physical server is. Please advise (I've just never thiought about this limit !) ...

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

  • RE: Hardware Requirements For SQL Server 2000

    Tossing about all of the disk numbers, nobody mentioned SAN disk. The reliability and performance of a SAN is unmatched by almost any internal disk configuration for database or dw...

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

  • RE: MSDE Install Issue

    Take a look at this link:

    http://support.microsoft.com/?id=290991#4

     

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

  • RE: Scheduling of maintenance plans

    In the past I've used both methods (EM Maintenance Plans and 'homegrown' scripts). It's pretty much a question of execution time on a per database basis and the amount of...

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

  • RE: SQL Server to ORACLE training courses

    Be prepared for 'optimzer' culture shock (one of many 'shocks' you will receive from Oracle). SQL Server is a 'cost' based optimizer and Oracle by default is a 'rule' based optimzer'....

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

  • RE: Simple Performance Question

    The SQL Server optimizer is a 'cost' based optimizer. Basically it will attempt to select the cheapest method (in physical and logical I/O) to satisfy your query (absent any optimizer hints)....

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

  • RE: Report of indexes, FK''''s, PK''''s required as we get in ERWin

    Go to BOL - select the index tab - and enter sp_help.

    This may not give you exactly what you want, but it may be a good starting point for individual objects...

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

  • RE: Recovery Simple to Full

    One additional point. After changing the 'recovery model' from 'simple' to 'full' you need to perform a full database backup immediately afterwards before any transaction log backups occur to maintain...

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

Viewing 15 posts - 2,356 through 2,370 (of 2,436 total)