Forum Replies Created

Viewing 15 posts - 3,571 through 3,585 (of 6,486 total)

  • RE: Oracle CONTAINS clause....No SQL Server equivalent??

    David.Mizelle (4/18/2008)


    I'm trying to convert the following query from Oracle to SQL Server.

    SELECT COUNT(1) NO_OF_ROWS FROM ADOPTION_PERSON WHERE (

    CONTAINS(ADOPTION_PERSON.NM_UPR_CURR_LST, ' fuzzy({A}, 68, 6, weight) ', 1)...

  • RE: CTE's are useless

    John Mitchell (4/18/2008)


    The thing about using temp tables is that it will materialise the whole of the "view". With a CTE, it will only take out what you need.

    Consider...

  • RE: Query Help needed

    DAVNovak (4/18/2008)


    I have never been a fan of dynamic SQL when I do not have to. There is a solution to this as a SP that does not need...

  • RE: Calculate pmt in t-sql (like excel)

    Let's keep the formulae here, so that others can double-check me....

    What about Future Value, you ask?

    [font="Courier New"]DECLARE @APR FLOAT

    SET @APR=.074;

    DECLARE @months INT  --how to break up the annual percentage

        SET @months=12;

    DECLARE @Period...

  • RE: Just another controversial topic

    Steve Jones - Editor (4/18/2008)


    Brie sure that you consider Mozzarella!! Pizza, baby!

    Ricotta join in on this so that we can have the more the merrier. In spain - you...

  • RE: SELECT DISTINCT on Long Table

    Steve -

    Is the drop down list showing the LAST 8 days? If not - is there a pattern in to what is shown? I'm just curious if...

  • RE: Publishing a project with different folders within

    Create a subproject...put the other reports in there. The project seems to hold the publishing folder.

  • RE: Just another controversial topic

    Adrian - I'd Brie Tilton towards agreeing with you....

  • RE: Just another controversial topic

    Brandie Tarvin (4/17/2008)


    guh-ROAN!!!!

    @=)

    Good one, though. (hee)

    I don't know why you say that - I thought it was pretty gouda. Edam if you got'em , I'd say...:)

  • RE: Insert...or UpdateCursor..Which is faster?

    Jeff Moden (4/17/2008)


    Keep in mind what I said in the conclusion of the article on triangular joins...

    Not all Triangular Joins are bad. With some restraint and the right criteria, Triangular...

  • RE: application running slow

    escaleraroyal (4/17/2008)


    matt,

    Then how do u explain me. the vendor running the application with my PRD database in his company'S environment and IT'S FAST!!!

    I don't, and like it or not, I...

  • RE: application running slow

    escaleraroyal (4/17/2008)


    Jeff Moden (4/16/2008)


    escaleraroyal (4/16/2008)


    update.

    Vendor says the same applicationX runs fast in another company1 which has a higher volumne of data. He thinks it's our clustering server that is causing...

  • RE: Displaying Non-English Characters

    jmasson (4/17/2008)


    When I use:

    update order_header set shipname1 = N '??'

    where orderno = '13153461'

    I get the following error message:

    Server: Msg 170, Level 15, State 1, Line 1

    Line 1: Incorrect syntax near...

  • RE: Displaying Non-English Characters

    hmm - interesting.

    If you just add the nvarchar notation (e.g.

    update order_header set shipname1 =N'??') Notice the N in front of the values.

    then although the characters themselves come across as...

  • RE: Identity Seed Error

    you have to set the seeding BEFORE you insert stuff into the table. Seeding only affect NEW identities being set up. If the table was empty when you...

Viewing 15 posts - 3,571 through 3,585 (of 6,486 total)