Viewing 15 posts - 181 through 195 (of 359 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
...
***The first step is always the hardest *******
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...
***The first step is always the hardest *******
July 11, 2012 at 10:47 am
Champion thanks 🙂
***The first step is always the hardest *******
July 11, 2012 at 8:55 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...
***The first step is always the hardest *******
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...
***The first step is always the hardest *******
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 🙂
***The first step is always the hardest *******
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...
***The first step is always the hardest *******
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...
***The first step is always the hardest *******
July 9, 2012 at 2:45 pm
I would say if not exists
***The first step is always the hardest *******
July 9, 2012 at 2:34 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
***The first step is always the hardest *******
July 6, 2012 at 4:26 am
abdul.badru (7/6/2012)
***The first step is always the hardest *******
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
***The first step is always the hardest *******
July 6, 2012 at 4:22 am
Hi yes it is possible to have a case statement in a where clause
***The first step is always the hardest *******
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...
***The first step is always the hardest *******
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?
***The first step is always the hardest *******
June 30, 2012 at 9:37 am
Viewing 15 posts - 181 through 195 (of 359 total)