Forum Replies Created

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

  • RE: return username or id?

    As I explained in this thread

    http://www.sqlservercentral.com/forums/shwmessage.aspx?forumid=5&messageid=163621

    "Once the record is displayed on the users screen SQL Server is no longer involved."

    You will not be able to query the record to...

    --------------------
    Colt 45 - the original point and click interface

  • RE: Obtaining error message information in alerts and jobs

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

     

    --------------------
    Colt 45 - the original point and click interface

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

    --------------------
    Colt 45 - the original point and click interface

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

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

     

    --------------------
    Colt 45 - the original point and click interface

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

    --------------------
    Colt 45 - the original point and click interface

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

    --------------------
    Colt 45 - the original point and click interface

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

    --------------------
    Colt 45 - the original point and click interface

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

    --------------------
    Colt 45 - the original point and click interface

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

    --------------------
    Colt 45 - the original point and click interface

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

     

    --------------------
    Colt 45 - the original point and click interface

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

     

    --------------------
    Colt 45 - the original point and click interface

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

    --------------------
    Colt 45 - the original point and click interface

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

    --------------------
    Colt 45 - the original point and click interface

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

    --------------------
    Colt 45 - the original point and click interface

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

    --------------------
    Colt 45 - the original point and click interface

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