Forum Replies Created

Viewing 15 posts - 4,951 through 4,965 (of 15,381 total)

  • RE: Moving Queries for access to SQL

    jdasilva (5/9/2014)


    J Livingston SQL (5/9/2014)


    is/can your form be based on a single table/sql query?

    Yes, and it currently is, but that query refines data based on a an office code selected...

  • RE: Could this be done using PIVOT ?

    I have a feeling the reason is because of performance? Have you tried changing your UNION to UNION ALL? It seems that since you have a date in there you...

  • RE: Please help me to write trigger for update on single column

    Despite the fact that you are working with Oracle I would highly recommend you read up on normalization. The structures you presented need some serious help with normalization. You have...

  • RE: Computed Column Equal to Letter

    scotsditch (5/8/2014)


    I'm trying to do something so simple, it's driving me nuts. Especially since I remember doing it before.

    I want to create a computed Column in a SQL Server...

  • RE: Could this be done using PIVOT ?

    Budd (5/6/2014)


    I have 2 identical tables one contains current settings, the other contains all historical settings.

    I could create a union view to display the current values from tableA and all...

  • RE: Dynamic sql giving en error

    RHut 21288 (5/9/2014)


    I believe this is what you need - dynamic SQL syntax is tricky. Each line needs a statement of

    SET @sql = @sql + ':

    No you don't...

  • RE: Insert INTO Select

    hoseam (5/9/2014)


    There has been few changes to this code..

    Before I used to pass parameters

    declare @Fund_Id varchar(50),

    @Product_Id varchar(50),

    @NewFund_Id varchar(50),

    @NewProduct_Id varchar(50),

    ...

  • RE: Controller Action

    ramana3327 (5/8/2014)


    Yes. They are executing different Stored Procedures

    Well unfortunately my crystal ball is still out for repair. As a result I can't your screen, I have no idea what you...

  • RE: Are the posted questions getting worse?

    Luis Cazares (5/8/2014)


    jcrawf02 (5/8/2014)


    WayneS (5/8/2014)


    Ed Wagner (5/8/2014)


    No real surprise there. I checked out the site quite some time ago and remarked to myself how miserable the questions were. ...

  • RE: Cursor from variable

    danielfountain (5/8/2014)


    Hi all,

    I am using a cursor (i know - but this is actually something that is a procedural loop).

    So effectively i have a table of names of stored procedures....

  • RE: Case statement with <> condition

    Megha P (5/8/2014)


    Sean Lange's code works perfectly ..with index seek

    WHERE (@p_flag = 1 AND moveFlag = 26)

    OR (@p_flag <> 1 --if this is a bit I would use = 0...

  • RE: BUFFER POOL EXTENSION EDITIONS

    Good question about a topic I knew nothing about. Thanks Tom.

  • RE: Controller Action

    ramana3327 (5/7/2014)


    Hi,

    I need to do some analysis.

    We have a database that track how much time it take to execute wcf service call or from UI controll call. I identified 1-2...

  • RE: Query running for morethan 2Hours 30 min

    There is no execution plan attached. It would also be helpful if you could include table and index definitions.

    Why are you using NOLOCK? Is missing and/or duplicate data acceptable? This...

  • RE: Instance installation date

    Eirikur Eiriksson (5/7/2014)


    Sean Lange (5/7/2014)


    I never use either of them and they tend to cause lots of issues for people who don't fully understand what they do.

    NOLOCK turns the database...

Viewing 15 posts - 4,951 through 4,965 (of 15,381 total)