Forum Replies Created

Viewing 15 posts - 13,321 through 13,335 (of 13,876 total)

  • RE: Concatenate string in DTS package

    If you are writing the code as part of an ActiveX script, the & character is used to concatenate strings, not + (just to keep you on your toes)!

  • RE: Duplicate column name resolution - Error on execution

    Suggest you modify your queries to remove any likelihood of ambiguity between column names.  Do this by prefixing the column name with the table name:

    select tablename.columnname from tablename

    If the table...

  • RE: Determining default db

    You can check this easily in EM.  Just open Security/Logins, right click the user of interest and select properties and you will see the default database.

  • RE: SQL puzzle...

    You will not achieve this type of formatting with straightforward SQL statements - Ray M's solution, possibly with an additional ORDER BY clause so that you get everything in date...

  • RE: Update table

    update no

    set status = 2

    from n_order no join n_inv ni on no.id = ni.id

    where (ni.tf is not null or exists (select bt.debtkey from banktable bt where bt.debtkey = ni.debtkey))

  • RE: Update table

    You haven't said what you want to update and what value, so I have left these for you to complete.

    update no

    set [field] = [whatever]

    from n_order no join n_inv ni on...

  • RE: DTS Error The number of failing rows exceeds the maximum specified

    Sure - right click on the Transform Data Task, select properties and then click on the Options tab.  You will see Max Error Count about halfway down the dialog box.

  • RE: @@IDENTITY

    Don't be offended if this is blindingly obvious to you, but does the PHCR_Record table have an IDENTITY column defined?

  • RE: Learning ActiveX

    Trial and error, walking around like a blind man in a dark room, is the way I did it.  Not recommended though

  • RE: query from recent status date?

    select item, max(StatusDate)

    from table

    Group By Item

  • RE: Doing multiple group bys in the same SQL query

    These examples do not cope with > 2 transactions, which I believe (from the other thread which you posted) is the requirement?

  • RE: SQL statement question

    This cannot be done in a single SQL statement.  If you definitely need it in this format, you'll need a chunk of code (examples of which appear elsewhere on this...

  • RE: Why is this happening?

    16 duplicates - on insert and on delete?

    Is it a coincidence that you are inserting exactly 16 fields?  (I hope so!)

    Have you got other triggers that may be causing some...

  • RE: SQL statement question

    Are there always two transaction IDs for each StockID, or is the number variable (in which case, you want a variable number of columns)?

  • RE: Multiple records being inserted using stored proc in ASP.Net

    I haven't analysed your code, but my suggestion is to that you run Profiler and check out what SQL is being sent from the ASP.NET app. and troubleshoot from there.

Viewing 15 posts - 13,321 through 13,335 (of 13,876 total)