Forum Replies Created

Viewing 15 posts - 7,246 through 7,260 (of 14,953 total)

  • RE: Jr sql dba phone interview questions

    Ray K (1/8/2010)


    ddlawal (1/8/2010)


    I need a mentor too.......any takers?

    Just keep posting to these forums. You'll find plenty of 'em! 🙂

    Have to agree with that one.

    Can't hurt to find out...

  • RE: Data Encryption

    I would probably encrypt and decrypt in the application, before it ever gets sent to the database. That way, it's not even plain-text on the network between the two....

  • RE: IsNumeric not working

    Yes, I left out 0. Otherwise, I would use Like for the test.

    Here's how I'd be likely to write something like this:

    if object_id(N'tempdb..#T') is not null

    drop table #T;

    create table...

  • RE: Old SQL Syntax

    jcdyntek (1/7/2010)


    Why in the world would we be referencing a standard from 89?

    You write from left to write, right? Any idea how old that standard is?

  • RE: Please Reply. I need a stored procedure based on some conditions.

    As expected, this has turned into Boot Hill as far as postings from the OP go.

  • RE: Are the posted questions getting worse?

    Lynn Pettis (1/8/2010)


    Alvin Ramard (1/8/2010)


    Hey Lynn, did you get that hippopotamus for Christmas?

    😀

    Thankfully, NO! I (actually the family) did get a few good (IMHO) movies: Star Trek, GI Joe,...

  • RE: Convert DateTime to MMDDYY

    You could convert using style 10, then wrap that in a replace that gets rid of the punctuation.

  • RE: Combining statements with different ranges

    You could do this:

    select

    workstation,

    date_entered

    from

    inventory

    where

    part_number = 'ABC'

    and workstation >= 5

    union all

    select

    ...

  • RE: How many databases you can have per server?

    Krasavita (1/7/2010)


    How many db can we have per server and how much memory in total can I have?

    Thank you

    Servers usually aren't all that loud, but the limit would really be...

  • RE: IsNumeric not working

    Try a few of these to find the limits of IsNumeric:

    select IsNumeric('1d10');

    select IsNumeric('1e10');

    select IsNumeric('0xF');

    select IsNumeric('10');

    select IsNumeric('Hello');

    The only ones that are not "numeric" are the hex number and "Hello". The...

  • RE: Old SQL Syntax

    I just tested it to be sure. *= is left, =* is right.

    I created a compat-80 database, and tested this:

    create table dbo.L (

    LNum int primary key);

    go

    create table dbo.R (

    RNum...

  • RE: Women in Technology -- How about at SSC?

    Lynn Pettis (1/6/2010)


    GilaMonster (1/6/2010)


    I know what you mean, I though Lynn was female for a very long time. (just based on the name, Lynn, please don't read anything into that)

    Not...

  • RE: Women in Technology

    support 79032 (1/6/2010)


    Nowever only a complete xenophobe (named after Queen Xeno a notorious bigot) could wish to drag nationality into an unrelated discourse.

    Whoah! "Queen Xeno"??? Where did you...

  • RE: Help between dates

    Create either a permanent or inline calendar table and join to that.

    Here's an example using a Numbers table to generate an inline calendar. I've got an add that ran...

  • RE: Best way for reading huge XML data

    lmu92 (1/6/2010)


    Beside your sample data are not wellformed xml data (name tag with spaces), I'd use XQuery instead of openxml:

    SELECT

    c.value('column1[1]','varchar(30)') as c1,

    c.value('column2[1]','varchar(30)') as c2,

    c.value('column1500[1]','varchar(30)') as c1500

    FROM @xml.nodes('NewDataSet') a(b)

    CROSS apply...

Viewing 15 posts - 7,246 through 7,260 (of 14,953 total)