Forum Replies Created

Viewing 15 posts - 52,126 through 52,140 (of 59,070 total)

  • RE: I got burned today at a SQL Server Interview!

    Grant Fritchey (3/5/2008)


    FWIW, I put two people through phone screens yesterday. Both had more than 8 years experience in SQL Server. Both were listed as senior level consultants. Neither could...

  • RE: Simple Method for Importing Ragged files

    Paul Ibison (3/4/2008)


    Comments posted to this topic are about the item

    Pretty good article, Paul... straight and to the point.

  • RE: Simple Method for Importing Ragged files

    admin (3/5/2008)


    Definitely an ingenious solution; however, it can quickly become a poor approach when having to deal with larger import file -think telephone call records for instance.

    I've found that the...

  • RE: Simple Method for Importing Ragged files

    brewmanz.sqlservercentral (3/5/2008)[hrI was hoping for the import of the classic ragged-right file - a variable number of fields in records that are wanted.

    For your definition of "ragged right", is...

  • RE: Simple Method for Importing Ragged files

    paul.ibison (3/5/2008)


    True - the title is a little misleading. The problem is that there isn't a 'correct' term for such files and this is the nearest commonly understood one. Anyway,...

  • RE: Get Only the File Name

    Sure... dunno how many of these you have to do, but the following is about twice as fast because there's only 1 Reverse and RIGHT is faster than SUBSTRING.

    [font="Courier New"]DECLARE&nbsp@FileName&nbspVARCHAR(256)

    &nbsp&nbsp&nbsp&nbspSET&nbsp@FileName&nbsp=&nbsp'D:\File\Data\test\Test.xls'

    &nbspSELECT&nbspRIGHT(@FileName,CHARINDEX('\',REVERSE(@FileName))-[/font]1)

    Of...

  • RE: Need to return query result in 0.02 sec

    I asked the business analyst to make sure how many shopper actually has those fields populated.

    Wait a minute... are you saying that a system already exists and already has customers...

  • RE: Help on splitting the name field in a query

    Ya know... I busted a bit of a hump for ya here... and no one on the other forum came close... the least you could do, MH, is let me...

  • RE: Need to return query result in 0.02 sec

    Steady... don't let this shake you, Loner...

    And 5000 hits per second does not equal .02 seconds... on a single cpu system, that would be .0002 seconds. Multiply that times...

  • RE: Varchar(max) problem in SQL server 2005

    The length of the number of characters plus 6 or 8 bytes worth of length info.

    Question is, why are you using VARCHAR(MAX) if it'll never get bigger than a thousand...

  • RE: small issue

    Heh... And the GUI rules... it may take longer and it may run slower, but the GUI rules.

    Bill Gates was right 15 years ago... someday there won't be any...

  • RE: Timetable report

    spencepa (3/4/2008)


    Matrix seems to work but if a student has a 15 min tutorial, this fills a whole column the same as a hour

    What do you want it to do?

  • RE: Selecting random rows

    Based on that link, I'm thinking this is someone's homework... wait a minute... I've got a porkchop around here somewhere... maybe even a Yak Burger, huh, Peter?

  • RE: What is a Cursor?

    Only if you promise to avoid cursors and while loops like they were going to kill you... because they'll certainly kill the performance of your code. There's almost always...

  • RE: Selecting random rows

    I sure do... read the URL in my signature. People will come screaming out of the woodwork to answer your question almost before you can ask it if you...

Viewing 15 posts - 52,126 through 52,140 (of 59,070 total)