Forum Replies Created

Viewing 15 posts - 4,441 through 4,455 (of 5,685 total)

  • RE: Disconnected Recordsets - Where are they Stored

    Okay, so, basically same thing.

    For those following along, a pertinent quote from the article:

    These are, as the name suggests, Recordsets that have been disconnected from the data source, thus allowing...

  • RE: Table variable vs Temp table for approx 50000 records?

    Elliott Whitlow (1/7/2011)


    Craig Farrell (1/7/2011)


    Elliott Whitlow (1/7/2011)


    The advent of CTE's do reduce the need for temp tables and table variables, but does not negate it.

    CEWII

    Elliott, I'll have to disagree with...

  • RE: Disconnected Recordsets - Where are they Stored

    Sean,

    Can you be more specific as to what you mean by a Disconnected Recordset?

    The only thing I could find on it is from a programmatical standpoint where recordsets/datasets aren't used...

  • RE: Memory lacking causing disk issues?

    Dangit, what's with me and double-posting today? Sorry, ignore.

  • RE: Memory lacking causing disk issues?

    Jason,

    %DiskTime and Queues are no longer valid parameters if you're working against SAN systems. If you have independent RAIDs, that's different. They're really meant for single spindle checks....

  • RE: Table variable vs Temp table for approx 50000 records?

    Elliott Whitlow (1/7/2011)


    The advent of CTE's do reduce the need for temp tables and table variables, but does not negate it.

    CEWII

    Elliott, I'll have to disagree with you here. A...

  • RE: Dynamic Column names based on value in other table.

    One alternative to this you might want to approach is the use of schemas on a per store basis. This way the front end code/proc/view calls don't have to...

  • RE: How to handle empty rows in source .csv?

    You'll probably want something along the lines of ( ISNULL( Firstname) == TRUE & ISNULL( LastName) == TRUE) ? 1 : 0 in a calculated field before entering the...

  • RE: Computed Column Performance/Static Value

    Is it persisted, and can you show us the DDL that builds this table via script? That'll help.

    You've already got a varchar(max) column in line with other data. ...

  • RE: Binary data field - COnvert

    because the binary conversion doesn't equate to just three characters.

    declare @blah varBinary(8)

    SET @blah = 0x746F680000000000

    print @blah

    print CONVERT( CHAR(8), @Blah, 0) -- Not sure why the 0 but figured I'd test...

  • RE: Point in Time restore versus Full Restore

    Grant Fritchey (1/7/2011)


    Craig Farrell (1/7/2011)


    Donalith (1/7/2011)


    I was told that both types of restore require the same space requirements. Is this true? If I have a 400 gig database do I...

  • RE: Memory lacking causing disk issues?

    Shifty,

    Do get the wait stat information, it's important, but this also concerned me:

    Average disk sec/Trans

    P drive (RAID10 - 14 drives) 0.014

    G drive (RAID10 - 14 drives) 0.014

    K drive (where DB...

  • RE: Point in Time restore versus Full Restore

    Donalith (1/7/2011)


    I was told that both types of restore require the same space requirements. Is this true? If I have a 400 gig database do I need another 400 gigs...

  • RE: convert military time to standard time

    wlblee38 (1/7/2011)


    I'm not that familiar with functions is there a way to do this with SQL? Here's what i revise from your example.

    :ermm: That was SQL. Proc based,...

  • RE: ssis

    Subbu,

    Slow down, take a deep breath. Your post above doesn't make much sense but I'm guessing that's because you're typing quickly and in a bind.

    Take a moment. Think...

Viewing 15 posts - 4,441 through 4,455 (of 5,685 total)