Forum Replies Created

Viewing 15 posts - 76 through 90 (of 171 total)

  • RE: SOPA and Censorship

    Grant Fritchey (2/21/2012)


    ... I'm pretty sure a healthy majority of people would be willing to sacrifice freedom for security...

    It comes to my mind when we (at my town) started to...

  • RE: How to ignore errors & insert data in a table

    Jeff Moden (2/15/2012)


    jcb (2/15/2012)


    ISNUMERIC is not perfect since chars like .+- can fool it.

    But if you use like it:

    ISNUMERIC(value + 'e0')

    ill improve correctness a lot.

    In this case, the improvement...

  • RE: How to ignore errors & insert data in a table

    ISNUMERIC is not perfect since chars like .+- can fool it.

    But if you use like it:

    ISNUMERIC(value + 'e0')

    ill improve correctness a lot.

  • RE: 2 date queries and binding togthter to one

    Are you trying to get the (workdays versus holydays+sundays) percentual between two dates?

  • RE: How to ignore errors & insert data in a table

    You can also use ISNUMERIC and case to input only valid numeric or null when its invalid.

    Depending of your tables and needs you can also log or create a log...

  • RE: How many indexes is too many ?

    Like bteraberry said it's not a good chose to use dynamic SQL like that.

    Instead you can use parametized dynamic SQL or static SQL.

    A non parametized dynamic SQL ill be a...

  • RE: How many indexes is too many ?

    Try change you query to not use dynamic SQL.

    You can, for example, use

    where (@param is null or table.column = @param)

    to avoid dynamic setup of the where clause.

    But first lear the...

  • RE: IT Budget

    Hey!

    You are the guy from tthe job post!

    http://www.sqlservercentral.com/Forums/FindPost1251850.aspx

    What is it? An interview question?

    Look, if you are in search for reviews for SQL tools you can google for it.

    I dont know...

  • RE: Load data from excel sheet to table

    I have a situation where I can only run scripts in the server.

    So, to import data from excel I just write insert statemens using the concatenation function from excel.

    =CONCATENAR(",(";A2;",'";B2;"','";C2;"','";D2;"','";E2;"','";F2;"','";G2;"','";H2;"','";I2;"','";J2;"','";K2;"','";L2;"','";M2;"','";N2;"');'")

    It ill...

  • RE: Old Dog, New Tricks

    Jeff Moden (2/13/2012)


    ...

    Heh... even without that bit of nightmarish code, I still find the same to be true... "sad bugs" and "bad coding".

    Sure, someday I ill print "I see bad...

  • RE: Old Dog, New Tricks

    Thanks Paul,

    I never though that I would live to see this day.

    Sorry while tears drops at the keyboard but...

    Too many sad bugs and bad coding I found writed with these...

  • RE: Old Dog, New Tricks

    implicit outter joins are no more in SQL 2012?:w00t:

  • RE: Securing data from internal theft

    Your data security is good as is your staff.

    Take your security measures, keep the data access to a minimum and don't forget to make a good investment in HR.

  • RE: Old Dog, New Tricks

    GSquared (2/10/2012)


    ...

    My point is simply that protecting the code when it's on their server is impossible. Can't be done

    ...

    Sure, even a hardware token can be cracked.

    The only way to "sell"...

  • RE: Need to replace #temp tables with CTE

    When you create temp tables it lies in the tempdb.

    When you drop temp tables or closes the connection they are erased from tempdb.

    When you query needs to create "behind the...

Viewing 15 posts - 76 through 90 (of 171 total)