Viewing 12 posts - 61 through 72 (of 72 total)
Thanks for that, but it didnt work, I got an incorrect syntax error on the last line:
EXEC sp_executesql @V_UPDATE_SYS_DB
December 2, 2006 at 3:58 pm
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...
December 1, 2006 at 6:31 am
EXEC sp_MSForEachTable 'DELETE FROM ?'
what stored procedure is this?
November 27, 2006 at 9:00 am
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...
November 8, 2006 at 6:36 am
thanks..i'll give it try.
thanks again.
November 1, 2006 at 2:29 am
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...
October 31, 2006 at 10:55 am
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...
October 31, 2006 at 2:19 am
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...
October 18, 2006 at 8:41 am
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...
October 18, 2006 at 8:12 am
Viewing 12 posts - 61 through 72 (of 72 total)