Forum Replies Created

Viewing 15 posts - 1 through 15 (of 93 total)

  • Reply To: Identify INT,BIGINT,character in stored proc

    sure sir.

    following is my proc code. proc is taking comma separated input string . it get parse and then compare to db table. if product(s) are invalid , i sent...

  • Reply To: Identify INT,BIGINT,character in stored proc

    Thank you. TRY_Convert exist in my version

  • Reply To: Invalid cursor state

    Thank you All for input.

    issue is resolved, it looks like ODBC issue but really not sure.

    we added connection open/Close on every sql statement in application and apparently it looks fixed...

  • Reply To: Invalid cursor state

    Dev said he used default settings. I got following on login Audit (profiler), not sure if this can help

    -- network protocol: TCP/IP

    set quoted_identifier on

    set arithabort off

    set numeric_roundabort off

    set ansi_warnings on

    set...

  • Reply To: Invalid cursor state

    This part of application is developed in Omnis

    I need to confirm ODBC version, Yes windows server upgraded some time back

    ratbak wrote:

    What type of application? MS Access by chance? I do...

    • This reply was modified 3 years ago by  thbaig.
  • Reply To: Invalid cursor state

    This table has no FK constraint , as this is base table and having PK only

    Jeff Moden wrote:

    It's just an INSERT for C.R.U.D.  I suspect that the inset is sometimes being...

  • Reply To: Invalid cursor state

    No trigger on this table

    ratbak wrote:

    Is there an insert trigger on WEB_ORDERS? Cursor could be lurking there.

  • Reply To: Invalid cursor state

    no , app is not calling it in loop, but this could call several times in a sec

  • Reply To: Invalid cursor state

    I have not defined any cursor. But may  be it is throwing error due to implicit cursors by rdbms , that is the reason for suggestion about SET NOCOunt ON...

    • This reply was modified 3 years ago by  thbaig.
  • Reply To: Conditional where clause

    Thank you Phil.

    but why the addition of "@myFlag <> 1)" make it work ?

    (@myFlag <> 1)

    OR

    (

    @myFlag = 1

    AND name NOT IN ( 'A', 'C' )

    );

     

    Phil Parkin wrote:

    DROP TABLE...
  • RE: ETL from MySql

    Phil Parkin - Tuesday, November 28, 2017 11:39 AM

    thbaig - Tuesday, November 28, 2017 11:00 AM

  • RE: ETL from MySql

    ZZartin - Tuesday, November 28, 2017 10:55 AM

    thbaig - Tuesday, November 28, 2017 10:48 AM

  • RE: Log Backup

    ThomasRushton - Tuesday, February 7, 2017 7:28 AM

    John Mitchell-245523 - Tuesday, February 7, 2017 7:15 AM

    February 7, 2017 at 9:22 am

    #1927120

  • RE: Conditional Join

    Phil Parkin (1/3/2017)


    So do the left join and then use COALESCE to pick up t2 data if it exists:

    select ColName = coalesce(t2.col,t1.col)

    If following is as per suggestion, it return all...

  • RE: Conditional Join

    No. It return all rows all time.

    I have updated description

Viewing 15 posts - 1 through 15 (of 93 total)