Forum Replies Created

Viewing 15 posts - 7,591 through 7,605 (of 8,756 total)

  • RE: Generating Hex on Insert

    mike 57299 (8/4/2014)


    Hi all...

    I am trying to generate a hex value automatically at time of insert. The column used for the hex # is an identity column. ...

  • RE: DBA vs Developer

    SQLRNNR (8/3/2014)


    Eirikur Eiriksson (8/3/2014)


    Jeff Moden (8/3/2014)


    TomThomson (8/3/2014)


    Jeff Moden (8/2/2014)


    Grant Fritchey (7/16/2014)


    You mean you didn't flip the infinity switch on your tempdb? That developer is right, you have it configured incorrectly.

    Heh......

  • RE: Converting Hour and Minute to Decimal

    Jeff Moden (8/2/2014)


    Eirikur Eiriksson (8/2/2014)


    The datetime format is still the same upto and including 2014.

    😎

    Thanks Eirikur. I've never looked at it but figured it might be so. That...

  • RE: DBA vs Developer

    Jeff Moden (8/2/2014)


    Grant Fritchey (7/16/2014)


    You mean you didn't flip the infinity switch on your tempdb? That developer is right, you have it configured incorrectly.

    Heh... what's really cool about Grant is...

  • RE: DBA vs Developer

    Jeff Moden (8/3/2014)


    TomThomson (8/3/2014)


    Jeff Moden (8/2/2014)


    Grant Fritchey (7/16/2014)


    You mean you didn't flip the infinity switch on your tempdb? That developer is right, you have it configured incorrectly.

    Heh... what's really cool...

  • RE: indexing a table having million of records

    LutzM (8/3/2014)


    after a semi-internal discussion the answer we agreed on is:

    Yes.

    If you need a more detailed answer please provide a more detailed question.

    Seriously? I thought that this time it was...

  • RE: How to replace null value in a query

    Please to read the links Lynn provided, it makes things so much easier if one has a proper structure and data sample.

    For the fun of it (and feeling lucky...

  • RE: Resume font ?

    If the appearance of the resume adds a value to it then selecting a font isn't enough. One should properly layout the document using the likes of Scribus, InDesign or...

  • RE: Are the posted questions getting worse?

    Where was that Crystal Ball again when one needs it, certain I've seen it somewhere...

    😎

  • RE: How to replace null value in a query

    Further on Lutz's last post, the solution to your problem is down to the actual, literal and exact data, at this point without the actual, literal and exact data...

  • RE: How to replace null value in a query

    The only modification I made to Lutz's code was to add the NULLIF, set to return NULL (Empty/Unknown) if the string value 'NULL' (four letter word) appears in the column.

    😎

  • RE: Nesting SQL to XML Grouping issue

    Did you get this resolved? It only takes a minor change from previously posted code

    😎

    SELECT

    AC.name AS 'Acct',

    (SELECT column_id AS 'Item/data()'

    FROM sys.columns AS ITEMS1

    WHERE ITEMS1.object_id = AC.object_id

    FOR XML PATH ('Items'),...

  • RE: How to replace null value in a query

    Using Lutz's code with the addition of NULLIF to also handle literal 'NULL' value

    😎

    create table #t (EmpID char(5), Name varchar(10), WorkDate date,Status varchar(5),WkdHrs int)

    insert into #t

    values

    ('00010', 'JOSEPH', '20140710','P', 8),

    ('05200', 'ANTHONY',...

  • RE: Pivotting on 2 Totals

    Quick question, can you supply the table structure and sample data in a consumable format?

    😎

  • RE: Alternative to report model project IN SS2012

    saxena200 (8/2/2014)


    Alright.. Lets follow it up with some "substantial" details -

    our data contains tables which have cyclic dependency, there are transaction and master tables but its not necessary that...

Viewing 15 posts - 7,591 through 7,605 (of 8,756 total)