Viewing 15 posts - 181 through 195 (of 358 total)
SOME DLL would be good hover i have re arrangged your cursor to do what i think you mean.
DECLARE cur_ProdHistMstr CURSOR FORWARD_ONLY
FOR
SELECT convert(datetime,absdate) as absDate
, 'Pack'
, Item
...
July 12, 2012 at 7:59 am
at the moment i dont want to do anything after z27 however, i may then want to re loop it through a second loop to start at AA1 through to...
July 11, 2012 at 10:47 am
i did some work for a prospect in CHINA in order for me to display the chinese characters i used NVARCHAR data type and downloaded the latest chinese language package...
July 11, 2012 at 4:32 am
there is a report that you can run that till tell you who last changed the stored procedure and when. from ssms navigate to your database, right mouse click on...
July 10, 2012 at 4:14 am
looks like i stand corrected and you cant use SET CONCAT_NULL_YIELDS_NULL { ON | OFF } for calculations of int field so use isnull function 🙂
July 10, 2012 at 3:42 am
at the top of your script set concat nulls on then off at bottom 🙂
SET CONCAT_NULL_YIELDS_NULL { ON | OFF }
When SET CONCAT_NULL_YIELDS_NULL is ON, concatenating a null...
July 9, 2012 at 3:12 pm
i have encountered a situation where i could only update 1 row at a time and the way i worked around was to use a cursor.
You could like the...
July 9, 2012 at 2:45 pm
Whats you error? and you cant use a case statment to procude a IN ( val,val2) clause...
can you post DDL information please and we can look at this for you
July 6, 2012 at 4:26 am
abdul.badru (7/6/2012)
July 6, 2012 at 4:24 am
i see you have identified the non numeric char, not sure how you did it, but here is one way to identify rows that has any none numeric characters
where PATINDEX('[^0-9]%',collumn)>0
July 6, 2012 at 4:22 am
Hi yes it is possible to have a case statement in a where clause
July 6, 2012 at 4:12 am
Jeff Moden (6/30/2012)
SGT_squeequal (6/30/2012)
Read up on use the READ UNCOMMITTED isolation levels, also do you know how many reads your query is doing?
Since the OP didn't have that in the...
July 1, 2012 at 10:06 am
Read up on use the READ UNCOMMITTED isolation levels, also do you know how many reads your query is doing?
June 30, 2012 at 9:37 am
Viewing 15 posts - 181 through 195 (of 358 total)