Forum Replies Created

Viewing 15 posts - 1,591 through 1,605 (of 2,436 total)

  • RE: The message could not be sent to the SMTP server. The transport error code was 0x80070057. The server response was not available

    Check the SMTP server. There are security settings concerning 'forwarding'. The SQL Server that you are performing the send from is probably not defined there.

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

  • RE: long backup duration

    We had a 160 Gb database that was backed up through a maintenance plan and it executed in 65 minutes. We have since modified the the backup into 'stripes' (4 .BAK files...

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

  • RE: How to make a DB a "black box"

    Granted there are ways to restrict things, however this realy seems like a thing for the contract people (lawyers) at your firm.  A simple acronym - NDA (non-disclosure agreement). If your...

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

  • RE: BCP Help

    You may want to include full drive/directory or UNC naming on all files in your scripts that are executed via xp_cmdshell. I believe the 'default' directory for xp_cmdshell execution is:...

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

  • RE: Msg 8623, Sev 16: Internal Query Processor Error

    Could you post the source of the SP ?

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

  • RE: Job schedule will not remain enabled

    Another thought is to script out the JOB, delete it then add it back. I've had this happen once or twice and that did the trick.

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

  • RE: Changing logical & physical filenames

    From BOL:

     

    ALTER DATABASE database_name

    MODIFY FILE (NAME = logical_file_name, NEWNAME = new_logical_name...).

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

  • RE: Best way to stamp records with who created / modified and when?

    Triggers or columns hmmm ... there is no 'right or 'NO WAY' (wrong answer) ... it all depends ... if the system is OLTP, with low volume (<100 transactions minute),...

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

  • RE: Huge log file

    WHat is your database recovery mode ? Are you executing a maintenace plan against the database ?

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

  • RE: Changing NTFS block sizes

    I do not have any answers to your questions but a point to look out for - disk defragmentation software may be an issue if you deviate from the default...

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

  • RE: DataBase Restore

    The file is a .chm, and it needs IE. I did have an issue with it running from a network drive after Win 2K3 Server SP1 was applied so I...

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

  • RE: DataBase Restore

    You should download the file to your local PC then launch it.

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

  • RE: DataBase Restore

    Here's a reference on SQL 2000 databases no DBA should be without:

    http://www.microsoft.com/sql/prodinfo/previousversions/systables.mspx

    This may answer a great deal of your questions when used in conjunction with BOL.

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

  • RE: What if CHARINDEX is 0?

    I'd prefer Ray M's first option:

    Select Case when charindex(',',Artist) = 0 then Artist else left(artist,charindex(',',artist)) end

     

    Why muddy things up with a union ...

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

  • RE: C# app timing out due to LATCH_EX issue with no errors in SQL Error logs

    Could you post the DDL for the table ? It may shed a trmendous amount of light on the issue.

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

Viewing 15 posts - 1,591 through 1,605 (of 2,436 total)