Forum Replies Created

Viewing 15 posts - 1,441 through 1,455 (of 2,486 total)

  • RE: Obtaining error message information in alerts and jobs

    There is a good article on SQL Agent tokens over at http://www.sqldev.net

     

  • RE: Veritas Backup Exec 10 - Agent for MS SQL 2k

    While my experience many years ago wasn't with Veritas, I think it's pretty pertinant here. When I started as the DBA the company was already using the ArcServe SQL Agent....

  • RE: Drop or Delete.. which is better?

    If you drop the table, you'll also lose those ever dependable dependencies

     

  • RE: Date Format

    Maybe thats wher the accuracy comes into play,

    From BOL,

    Date and time data from January 1, 1753, through December 31, 9999, with an accuracy of three-hundredths of a second, or 3.33...

  • RE: Where to place the database backup on Active \ Passive cluseter

    SQL Server is very unforgiving when there is any latency between it and the backup device. A single delayed packet can cause the backup to fail. That's why it's always...

  • RE: SQL Server Licensing

    One thing to watch when looking at CALS is whether they are user or device CALS.

    200 device CALS will license you for 200 unique devices (workstations, other servers, etc...).

    200 users...

  • RE: joining to itself

    You should re-write the query using the ANSI join syntax (INNER JOIN, OUTER JOIN, etc...).

    If you use a derived table instead of an IN clause in the WHERE statement, SQL...

  • RE: alter database set single_user

    How about this?

    use master
    go
    DECLARE @intErrorCode INT
    alter database inventory set SINGLE_USER with ROLLBACK immediate
    SELECT @intErrorCode = @@ERROR
    IF (@intErrorCode = 0) 
    BEGIN
     -- do database update, drop databae, schema change...
  • RE: Import from Fixed Width Column Text file Problem

    Did you select CR/LF as the row delimiter? Selecting "Fixed Field" is only for the columns. You still have to supply the appropriate row delimiter.

     

  • RE: Put database on website

    Yes there is that option, but I think it still excludes foreign key constraints?

    That's the main reason I script out the changes seperate from the data.

     

  • RE: Import from Fixed Width Column Text file Problem

    When you initially setup the file connection in DTS make sure the first row has the last column populated. This is the important part.

    Then select "Fixed Width" instead of "Delimited" in...

  • RE: SQL Server slower than Access

    Yes SQL Server will run a database that has been designed for Access much slower than Access itself.

    If you're not prepared, or not able, to re-design your database to take...

  • RE: ERD modeling tool

    The last time I used ERWin was version 4.1 and it was a real dogs breakfast. After losing my model about 2-3 times due to crashes, I got into the...

  • RE: Last Step in Package

    Haven't come across a need for sleep in my DTS packages, only in my day-to-day life

    How about using WScript.Shell to call NTSLEEP...

  • RE: SQL MAIL - URGENT

    I second the call to use xp_smtp_sendmail. since implementing at our site we've had no problems at all.

     

Viewing 15 posts - 1,441 through 1,455 (of 2,486 total)