Viewing 15 posts - 106 through 120 (of 203 total)
I have 200 records in my test database that did not meet the criteria. I changed one record to meet the criteria and executed the script. It updated all records.
December 8, 2009 at 7:08 am
This updated all the records regardless of dates. What am I doing wrong?
/code
UPDATE CUST_LINE_DEL SET USER_ORDER_QTY = '9'
FROM CUST_LINE_DEL
JOIN CUST_ORDER_LINE ON CUST_LINE_DEL.CUST_ORDER_ID = CUST_ORDER_LINE.CUST_ORDER_ID
JOIN CUSTOMER_ORDER ON CUST_ORDER_LINE.CUST_ORDER_ID =...
December 7, 2009 at 2:55 pm
Yes. If I already have management studio open it will open fine. I can live with it but it did not happen on my XP or Vista machine. I also...
November 24, 2009 at 7:11 am
It will open fine if I open it via notepad or the management console. When I was running vista I was able to just double click the .sql and managment...
November 23, 2009 at 2:04 pm
Thank you very much. It is greatly appreciated. Learn something new each day!
November 11, 2009 at 11:21 am
Is what you did. Thanks a million for the help. It is greatly appreciated.
September 21, 2009 at 9:11 am
That worked! How was it getting turned into an inner join?
September 21, 2009 at 9:09 am
Tried flip flopping the tables but it still does not return any records. I believe it is due to the fact that I am testing for a program id of...
September 21, 2009 at 9:08 am
Here is the script I built on your suggestion. It returns no records.
SELECT DISTINCT NAME
FROM APPLICATION_USER
LEFT JOIN USER_PGM_AUTHORITY ON APPLICATION_USER.NAME = USER_PGM_AUTHORITY.USER_ID
WHERE PERMISSION IS NULL AND PROGRAM_ID = 'VMINVENT'
September 21, 2009 at 8:59 am
If a user has permission to a program there is not a null value. There is no placeholder whatsoever. So, I can not use "permission is null" in a script....
September 21, 2009 at 8:41 am
How could we modify the code to include the growth of the log file?
September 14, 2009 at 11:45 am
Ok. The weekly maintenance job executed last night without a hitch. However, due to the rebuild on the indexes the log file grew 4G. The VLF's grew from 4 to...
September 14, 2009 at 7:22 am
Viewing 15 posts - 106 through 120 (of 203 total)