Forum Replies Created

Viewing 12 posts - 61 through 72 (of 72 total)

  • RE: Cursor that updates every table in database

    Thanks for that, but it didnt work, I got an incorrect syntax error on the last line:

    EXEC sp_executesql @V_UPDATE_SYS_DB

  • RE: Updating multiple rows of a single column

    Thanks for that, I knew there was a simple way to do it, somebody gave me a cursur script to use and I knew there had to be a simpler...

  • RE: emptying tables

    EXEC sp_MSForEachTable 'DELETE FROM ?'

    what stored procedure is this?

  • RE: would this work?

    many thanks.

  • RE: isql from a batch file

    found where I was going wrong..thanks

  • RE: Problem with CAST

    Marvelous

    Thanks  guys for all your help.

  • RE: missing ''''AS'''' is select statement with cast

    thanks...I did what you suggested, but now I get a different error msg:

    Server: Msg 156, Level 15, State 1, Line 4

    Incorrect syntax near the keyword 'CASE'.

    the current select statement:

    SELECT IA.ITM_ID AS...

  • RE: select reoccuring values only

    thanks..i'll give it try.

    thanks again.

  • RE: select reoccuring values only

    Yes kind off. when you execute the query:

    SELECT loi.LOB_ID, loi.EUS_ID, loi.LOI_START_DATE, loi.LOI_END_DATE, eu.CTY_CODE

    FROM learning_object_instances loi

    JOIN end_users eu ON eu.EUS_ID = loi.EUS_ID

    WHERE eu.CTY_CODE = 'RU' and loi.LOI_START_DATE > '20060907'

    the data returned...

  • RE: select reoccuring values only

    Hi, thanks for ur reply. Your code works, but it is returning duplicates of all the rows, instead of just selecting those values that occur > once. Perhaps there is...

  • RE: Up system table

    Its an order that come down from 'on high', theres a problem with certain records being too big, a change of datatype has been suggested.

    our stored procedures are more...

  • RE: Up system table

    I've been asked to change the datatype of the 'text' column in syscomments from nvarchar(4000) to ntext.

    so far I havnt been successful in doing this. any suggestions would be greatly...

Viewing 12 posts - 61 through 72 (of 72 total)