Forum Replies Created

Viewing 15 posts - 24,661 through 24,675 (of 26,486 total)

  • RE: Attach DB from storage drive

    I am going to give you the standard answer, "It Depends". Some will tell you to move them to their own set of drives, others won't. On our...

  • RE: Moving Logs and Indexes to new Physical Drive

    If you are going to move the files from I to M and J to N, delete I and J, then rename M to I and N to J, the...

  • RE: Attach DB from storage drive

    I'd check the attributes on your E-Drive and the sub-directories. Sounds like compression is turned on at the file-system level.

    😎

  • RE: Compute Column

    I'd have to agree with Jeff. I did take your code, and after some adjustments (my system at home is case sensitive) I have the following working, except I...

  • RE: effect of averaging data on performance

    A couple of things. One, is the interval time for the averaging fixed (ie 6:00 - 6:29, 6:30 - 6:59) or is it dynamic (one time it may be...

  • RE: Finding Missing Dates for Each EmpIDs

    In addition to what Jeff said, it would also be nice to see what you have already tried to solve this problem. We don't want to start down the...

  • RE: Count all register from all tables.

    use [YourDatabase]

    go

    select count(*) from sys.tables

    go

  • RE: How do I append time stamp to a table name

    Looks like Jack beat me, but here is my code anyways.

    declare @SQLCmd nvarchar(4000),

    @TableNameOrig sysname,

    @TableNameCopy...

  • RE: Struggling with time!

    tim.pinder (6/6/2008)


    Lynn Pettis (6/6/2008)


    You also stated that [arrival date] and [arrival time] are both datetime fields, what does this data look like (sample values would be nice to see)?

    😎

    I posted...

  • RE: Job Specialization - Boon or Bane?

    K. Brian Kelley (6/6/2008)


    blandry (6/6/2008)


    I have never forgotten a guy I worked for who used to ask a good question - Is he/she an "expert" or "eckspurt" - the latter...

  • RE: Struggling with time!

    You also stated that [arrival date] and [arrival time] are both datetime fields, what does this data look like (sample values would be nice to see)?

    😎

  • RE: Unauthorised Restore of BAK Files

    Here is some code from my backup process that provides a datetime stamp for my transaction log backup files.

    declare @CurrDate datetime;

    set @CurrDate = getdate();

    select N'_' +

    ...

  • RE: Struggling with time!

    tim.pinder (6/6/2008)


    Lynn Pettis (6/5/2008)


    What does the data in the following fields look like:

    [INITIAL_ASSESSMENT_TIME] (char(4))

    [TIME_SEEN_FOR_TREATMENT] (char(4))

    [ATTENDANCE_CONCLUSION_TIME] (char(4))

    [DEPARTURE_TIME] (char(4))

    😎

    Hi Lynn

    It's just a four digit number.

    Okay, but 9999 is a four digit number....

  • RE: Job Specialization - Boon or Bane?

    That comes to this, do you have x years experience or 1 year experience x times over. I have seen both. I believe I am in the former...

  • RE: Get the correct 'ADD' script for a column

    I'll do a little digging. Second question, though, could you use a uniquely named global temp table (##Temp01)?

    😎

Viewing 15 posts - 24,661 through 24,675 (of 26,486 total)