Forum Replies Created

Viewing 15 posts - 8,146 through 8,160 (of 26,490 total)

  • RE: How to preserve global temporary table data

    ScottPletcher (4/4/2013)


    Lynn Pettis (4/4/2013)


    ScottPletcher (4/1/2013)


    sharky (3/31/2013)


    Lynn Pettis (3/29/2013)


    SQLRNNR (3/29/2013)


    Lynn Pettis (3/29/2013)


    ScottPletcher (3/29/2013)


    The advantage to tempdb is that there is less overhead writing data there since SQL "knows" it never has...

  • RE: Grouping field in alphabetical order not in order needed

    Or this:

    WITH Priorities as (

    SELECT

    Priority,

    PriorityOrder

    FROM

    (VALUES ('Top Priority',1),

    ('High',2),

    ...

  • RE: I need answer for this can anyone help me with this

    Really? If all you need from the StudentData in a separate table is a sumary of fees by department this will provide what you want with no temporary table...

  • RE: Column name or number of supplied values?

    Try this:

    insert into PendingIO(

    [database],

    Physical_name,

    io_pending,

    io_pending_ms_ticks,

    io_type,

    num_of_reads,

    ...

  • RE: Which of the two queries is better ???

    T.Ashish (4/4/2013)


    Hi All,

    I have attached two queries with table definition and sample data.

    Query 2 is working better then query 1.

    Now the actual question is:

    Should I...

  • RE: Query help

    SQL_Surfer (4/4/2013)


    In other words, user needs to see list of conflicted dates so that he knows which new dates to put in.

    Words, all I see are words. We need...

  • RE: How to preserve global temporary table data

    ScottPletcher (4/1/2013)


    sharky (3/31/2013)


    Lynn Pettis (3/29/2013)


    SQLRNNR (3/29/2013)


    Lynn Pettis (3/29/2013)


    ScottPletcher (3/29/2013)


    The advantage to tempdb is that there is less overhead writing data there since SQL "knows" it never has to recover tempdb.

    Really?...

  • RE: Query help

    SQL_Surfer (4/4/2013)


    Sorry, output should be something like select from mytasklist where conflict dates exist. If no conflict dates exist, should be nothing.

    This doesn't help me. Using the limited sample...

  • RE: Selection using date held as a string

    Chris Quinn-821458 (4/4/2013)


    I think I have discovered something that is possibly significant!

    As stated previously, the data is a set of key/value pairs, with a datatype (D = Date, N= Number,...

  • RE: Query Help Please!

    Vertigo44 (4/3/2013)


    Lynn,

    Wouldn't that give me Visits with or that have doc name B? I'm looking for the ones that do not have a specific document...that are missing a document. You...

  • RE: what are the area's you will check when u have a performance issue?

    AAKR (4/3/2013)


    hi all,

    For interview prospective I need answer for this question. Please help me all

    In advance thank you 🙂

    Are you the interviewer or interviewee?

  • RE: Query Help Please!

    Something like this:

    select *

    from

    TableH h

    where

    exists(select 1 from TableC c where c.[visit#] = h.[visit#] and c.[document name] = 'Doc B');

  • RE: Do Not Call list

    erikd (4/3/2013)


    Lynn Pettis (4/3/2013)


    And what happens if you make the phone number field varchar(8)?

    Heh. Curiously, I can use Python to split the file up (opening the whole file with any...

  • RE: Do Not Call list

    And what happens if you make the phone number field varchar(8)?

  • RE: Do Not Call list

    Can you upload a 10 line snippet of the file as a .txt file, please?

Viewing 15 posts - 8,146 through 8,160 (of 26,490 total)