Forum Replies Created

Viewing 15 posts - 241 through 255 (of 361 total)

  • RE: Rebuild Index over large table

    Aye, it even says so in books online. 

    The important part tho is that the log can be truncated/backed up at frequent intervals during...

  • RE: Rebuild Index over large table

    Pretty sure these are logged ops.  Indexdefrag afaik is not a single transaction though - so the log can be truncated/backed up during the operation. The other 2 on the...

  • RE: Yaay W00t!

    'salright. 

    Putting a gig and a half a day into this table at the mo, 4 months into what looks awfully like exponential growth.

  • RE: Yaay W00t!

    Its nearly 130Gb so, I think condolences will be required shortly...

  • RE: Top N question

    how about

    select Cia, Emple , (select top 1 balance from table b where b.Emple  = m.emple and b.cia=m.cia where date <= @date order by date desc) from table m

     

    or somehting along those...

  • RE: date string conversion...

    check out CONVERT in BOL - see if any of those formats would work for you!

     

     

  • RE: how to dump or append data to a text file

    how about raiserror(...) with log?

     

     

  • RE: Conditional Constraints

    write a function and reference the function in the constraint.

     

    eg constraint check (dbo.BobIsRight(colname1, col23) = 'True')

  • RE: date string conversion...

    can you not simply use right('0000000' + ltrim(str(run_time)), 6) or whatever it is?

     

     

     

    something along the lines of

    select

    cast(

    ltrim(str(run_date))+ ' '+stuff(stuff(right('000000'+ltrim(str(run_time)), 6) ,...

  • RE: SQL Bulk Insert Problems !

    Daft question, but is it actually set up as a network share? 

  • RE: Profiling Stored procedure completion. SP:completed

    Are you using any filters?

  • RE: Transaction log

    A lot of the folks I've worked with often call the retained transaction log backup files 'log files'.  I admit I often do myself....

  • RE: Database sluggish!

    With the av - is it running some heuristics/real time wotnot?  Also did you manage to get an exemption for the import location - or is that all being scanned too?

    Another...

  • RE: Database sluggish!

    Hi

    Sounds like fun...

    The main things in my experience to cause these are Transaction Log size (being big - anything over a couple hundred meg or so is indicative of a...

  • RE: permissions on functions

    Check out OBJECTPROPERTY in BOL.

    Rich

Viewing 15 posts - 241 through 255 (of 361 total)