Forum Replies Created

Viewing 15 posts - 1,936 through 1,950 (of 3,011 total)

  • RE: Best Bet for Backups

    Mike Levan (3/17/2009)


    Each of our database in the environment ranges from 800GB to 1.5 TB, we back them up once in a month as we update them only once in...

  • RE: SQL Agent Job Schedule Overlap

    If both schedules start at the same time of day, then the job will run only one time.

  • RE: T-Sql rant

    steve dassin (3/16/2009)


    Gift Peddie (3/15/2009)


    Science is a b****, expediency is a w*****. It's not easy to sleep with science. But sql sells itself to even the lowest bidder. It's been...

  • RE: Fastest way to add indexes to 9+ million records in a table

    I can't see why you would drop the clustered index and then recreate it, since that forces SQL Server to rebuild the table as a heap and then rebuild it...

  • RE: Maintenance plan has wrong connection information

    You will have to delete the maintenance plans and redo them.

  • RE: Fastest way to add indexes to 9+ million records in a table

    Are you completely reloading the table each time, or just adding new rows to existing data?

  • RE: Drop All Users in the Database

    Lowell (3/16/2009)


    i just slapped this together.

    i'm using sp_revokeaccess instead of sp_dropuser, because the users might be orphaned and not tied to a login;

    this yanks them out the way i expected:

    [font="Courier...

  • RE: A theoretical flat file database, how could it work well?

    I think it would be hard to justify any effort to develop a flat file database, since there are fairly mature free open source databases available, and free versions of...

  • RE: A theoretical flat file database, how could it work well?

    I worked at a place where an expensive outside consultant did a study of our data environment and actually proposed something like this.

    The CIO just said that was the stupidest...

  • RE: Small server - any point in 64bit?

    You might turn the question around and ask "Why not use 64-bit?"

    One thing that may be a cost consideration is that 32-bit Windows Server 2003 requires Enterprise Edition to support...

  • RE: Are the posted questions getting worse?

    I think the guy's a troll, trying to start trouble.

    Nothing to see there, just move along.

  • RE: DATEDIFF question

    Marios Philippopoulos (3/13/2009)


    Is there a performance difference between these 2 calculations?

    IF DATEDIFF(SECOND,@StartDate,@EndDate) <0

    BEGIN...

    versus

    IF @StartDate >= @EndDate

    BEGIN...

    Both variables are datetime.

    They are not logically equivalent tests. Notice the different...

  • RE: T-Sql rant

    foxjazz (3/13/2009)


    ok example sort of (my computer is sick so I can't give you something already done)

    select name from mynametable where changedate > @yesterday

    fetch from @sel into @name

    while (@@fetch_status =...

  • RE: Downtime

    Is depends on the meaning of downtime. If you look at if from the user point of view of not people not being able to do their jobs and...

  • RE: SQL Dates retunring incorrcet

    You must enclose the date in single quotes to cast it correctly to a date time.

    when createddate > 2009-06-01

    is the same as

    when createddate > '1905-06-26'

    because 2009-06-01 becomes...

Viewing 15 posts - 1,936 through 1,950 (of 3,011 total)