Forum Replies Created

Viewing 15 posts - 46 through 60 (of 121 total)

  • RE: Best way to store photos

    I would recommend the file system and store the path in the SQL Server. Ultimate flexibility and easiest to code.

  • RE: Tip: Resetting Identity Fields

    Brandon Forest (12/3/2012)


    @ those who question why to do this. It's very simple, if you don't see the need to do it, don't do it. Questioning why...

  • RE: Tip: Resetting Identity Fields

    Sigh... ID's like this should NOT be intelligent, by their very nature they should tell NOTHING of the data. It serves to uniquely identify a row. Thats...

  • RE: Performance issue

    ranganathleo (11/29/2012)


    We have got a critical case where their is a performance degrade for many users on an application. Have been asked to check which tables are been utilized to...

  • RE: LIKE with and without wildcards in WHERE clause

    But wouldn't this always compare all variables, though? In the syntax with OR, the query engine can see that a variable is empty, thereby satisfying one side of the OR...

  • RE: rebuild index worsens query performance

    Does this run from a stored proc with parameters? Is parameter sniffing a problem here? Perhaps add an OPTION(OPTIMIZE FOR if params are used and see what shakes...

  • RE: Using Full-Text Search

    SpringTownDBA (11/20/2012)


    DiverKas (11/20/2012)


    SpringTownDBA (11/19/2012)


    Full text querying only does prefix matching, not postfix

    'erin*' matches 'erinblah'

    '*erin' doesn't match 'blaherin'

    There is no way to match the last half of a word.

    Actually, the way...

  • RE: Using Full-Text Search

    SpringTownDBA (11/19/2012)


    Full text querying only does prefix matching, not postfix

    'erin*' matches 'erinblah'

    '*erin' doesn't match 'blaherin'

    There is no way to match the last half of a word.

    Actually, the way around this...

  • RE: From YYYY-MM-DD HH:MM:SS format to MM/DD/YYYY?

    SQL server rokee (11/20/2012)


    Hello fellow developers I have the following code which translates MY_COLUMN from decimal to varchar ,then from varchar to Datetime.

    The only glitch is that the output...

  • RE: Can't Grant Delete

    Bob McClellan-320407 (11/19/2012)


    Thanks B.

    The user would be myself. I created the Job.

    The job fires a stored proc that has other SP's..

    one of the SPs does the purgepop.

    If I execute...

  • RE: Query Optimization

    Jeff Moden (11/16/2012)


    DiverKas (11/15/2012)


    I am curious though Jeff, what is this storing of the datatype magic you speak of? :w00t:

    What's the one datatype that most people have never used...

  • RE: Query Optimization

    Jeff Moden (11/15/2012)


    aaron.reese (11/15/2012)


    And that us why MI Developers hate 'lazy' programmers that use EAV tables.

    By lazy, i really mean misguided or uneducated. Entity Attribute Variables make ut easy to...

  • RE: Multiple Instances vs. Multiple DBs on one instance

    dan-572483 (11/7/2012)


    If you have two beefy 64-bit servers in 2-node cluster, and several applications that need a database server, is it generally better to install multiple instances, or deploy databases...

  • RE: how to insert image in sql server 2005

    sanjay.dakolia (11/5/2012)


    hi,

    i want to insert image into sql server using sql query. please help.

    thanks in advance

    sanjay

    It is generally considered bad practice to store images in the...

  • RE: Query performance change

    Lee Crain (10/25/2012)


    This observation may or may not be helpful.

    I couldn't help but notice your WHERE clause:

    "WHERE

    a.P_STATUS <> 'R'

    and b.TICKET_NUM is not null

    and b.TXN_DT is not null"

    All NOT comparisons...

Viewing 15 posts - 46 through 60 (of 121 total)