Viewing 15 posts - 361 through 375 (of 7,429 total)
Darn it, forogt my end
WHERE
jomast.ftype = 'I'
AND jomast.fitype <> '2'
AND jomast.fstatus = 'RELEASED'
AND jomast.fprodcl LIKE (CASE @Prodcode
WHEN '01' THEN @Prodcode
WHEN '04' THEN @Prodcode1
WHEN '10' THEN @Prodcode2
END)
October 26, 2007 at 8:09 am
Sorry had a typo and the edit button won't work
WHERE
jomast.ftype = 'I'
AND jomast.fitype <> '2'
AND jomast.fstatus = 'RELEASED'
AND jomast.fprodcl LIKE (CASE @Prodcode
WHEN '01' THEN @Prodcode
WHEN '04' THEN @Prodcode1
WHEN...
October 26, 2007 at 8:09 am
To me this looks like what you are saying you are after
WHERE
jomast.ftype = 'I'
AND jomast.fitype <> '2'
AND jomast.fstatus = 'RELEASED'
AND jomast.fprodcl Like (CASE @Prodcode
WHEN '01' THEN @Prodcode
WHEN '04'...
October 26, 2007 at 8:08 am
I have been told Quantum Mechanics are easier for many folks. 😀
October 24, 2007 at 11:14 am
I don't know. I am a programmer and never had an issue with understanding the logic of the knows and unknowns.
Best way I ever could think of to describe is...
October 24, 2007 at 10:47 am
Just a concept piece I was playing with. Not good for very large data sets in the current form but does a good job as a simple tool
Inputs are
@info-2 -...
October 24, 2007 at 7:27 am
Anyother thing could be the stats or usage information need to be refreshed. Try sp_updatestats and DBCC UPDATEUSAGE.
October 24, 2007 at 6:49 am
They Search box in the top right corner replaces that page.
September 28, 2007 at 7:54 am
chris dietz (9/26/2007)
A typical system may have...
September 28, 2007 at 7:52 am
"Hello....I have 1200 GB drive space RAID 5"
Can you provide a break down of the equipment? How many HD's is there only one RAID controller? How many channels on controller(s)?...
September 28, 2007 at 7:47 am
My thought is most of the work actually is happening on SQL Server and not the AS400 machine because of the way the transaction is handled. Openquery will submit to...
September 21, 2007 at 8:59 am
How are you writing your query to run on SQL? Have you tried Openquery to see if it behaves more as expected?
September 21, 2007 at 8:02 am
Not sure if you can. Couldn't find anything either and it has been 3 years since I last worked with MSDTC.
September 21, 2007 at 7:58 am
Ok you create datasets with the data tab of the designer, there you name the dataset, if you look at that tab you will see the drop down for your...
September 21, 2007 at 7:52 am
Could be something in one of the jobs specifically doing it, maybe throwing an unmaged error and crashing SQL Agent. Look at all the jobs that run around that time...
September 21, 2007 at 7:46 am
Viewing 15 posts - 361 through 375 (of 7,429 total)