Viewing 15 posts - 46 through 60 (of 127 total)
What color is your brain?
I said grey This was the question from the group VP. I had already nailed all the technical and soft skill questions, aced...
August 12, 2011 at 4:31 pm
I found this article to be helpful in explaining how to interpret the output when IO and/or TIME statistics are set to ON
http://www.sql-server-performance.com/articles/per/statistics_io_time_p1.aspx
June 4, 2010 at 12:08 pm
This may be relevant to you. You should consider the following in this type of comparison...
While the syntax of convert(varchar,getdate(),101) will return the data in the format you are...
June 9, 2009 at 4:10 pm
What problem are you getting?
What is the syntax of what you're tyring to do?
June 5, 2009 at 3:43 pm
What does your code for calling the stored procedure look like?
June 3, 2009 at 5:24 pm
There's always a non-cursor way, but without some sample data and sample code, you may never know that way...
Copy in some sample data depicting your scenario it will help other...
June 3, 2009 at 4:44 pm
It's the way nulls are evaluated. They don't evaluate to true or false, they evaluate to unknown.
So the statement 1=1 is "true" and null = null is "unknown". ...
June 3, 2009 at 11:24 am
Will you post the error messages you are getting.
June 2, 2009 at 5:44 pm
This should do the trick for you... This yields the results you are looking but may not be the most efficient way to get those results. I didn't...
June 2, 2009 at 5:13 pm
macwiz (6/2/2009)
June 2, 2009 at 4:23 pm
I'm not sure if you are looking to see multiple rows per item for each unique supplier or a distinct list of suppliers that have supplied any item or 1...
June 2, 2009 at 3:46 pm
I suggest using the "update(column)" function inside the trigger to check for changes.
Details found in BOL at: ms-help://MS.SQLCC.v9/MS.SQLSVR.v9.en/tsqlref9/html/8e3be25b-2e3b-4d1f-a610-dcbbd8d72084.htm
Below I started an if statement to get you started.
ALTER TRIGGER [F0911_UPDATE]ON [CRPDTA].[F0911]...
June 2, 2009 at 2:23 pm
The issue is you are missing the quotes...
edit your statment to this:
C:
CD "C:\BFS_Backup"
MKDIR "[/color]%DATE:~10,4%-%DATE:~4,2%-%DATE:~7,2%"
June 2, 2009 at 2:04 pm
Syntatically your statement is correct. I would suspect that in every instance the problem you are facing is that the process always executes the ELSE portion. Which as...
June 2, 2009 at 1:40 pm
Can you send a samle of the data found in P21PLAY.dbo.p21_view_oe_hdr.delivery_instructions?
I believe your data will be something like
"BUNCHA STUFF #999999 OTHER STUFF"
The error is probably occuring because there is no...
December 14, 2007 at 11:54 am
Viewing 15 posts - 46 through 60 (of 127 total)