Viewing 15 posts - 5,071 through 5,085 (of 5,685 total)
The best starter and foundations of Service Broker articles I've seen are Adam Mechanic's.
http://www.simple-talk.com/sql/learn-sql-server/service-broker-foundations-workbench/
November 7, 2010 at 1:18 am
sankarkot2007 (11/6/2010)
Hello Da-Zerodon't post these type of suggestions,ok.I learn beggener stage Thats why i want some questions
As Jeff mentioned above, that particular question is a trap. It implies...
November 7, 2010 at 1:15 am
biju.pad (11/5/2010)
November 5, 2010 at 6:17 pm
biju.pad (11/5/2010)
November 5, 2010 at 5:40 pm
Lynn Pettis (11/5/2010)
tosscrosby (11/5/2010)
ALZDBA (11/5/2010)
Jack Corbett (11/5/2010)
November 5, 2010 at 3:13 pm
Much luck, Roy. May your rain be soft and pretty, instead of sideways and flipping trees. 😀
On a lighter note, I made into the top 5 posters for...
November 5, 2010 at 2:20 pm
Hey Lutz.
Yeah, found the 'Monday' equation, which is how I think I went flying up the wrong DATEFIRST when I did a little research behind it on the web. ...
November 5, 2010 at 11:50 am
Jeff Moden (11/4/2010)
Craig Farrell (11/3/2010)
It manipulates DATEFIRST and you might botch something up on your real servers if you run it.
Setting DATEFIRST in a query only affects the session, not...
November 4, 2010 at 9:34 pm
Perhaps something like this?
select
o.name,
i.rowcnt
from
sysobjects o
JOINsysindexes I
ONo.id = i.id
where
o.type = 'u'
and i.indid IN (0,1)
order by
o.name
November 4, 2010 at 3:50 pm
PFlorenzano-641896 (11/4/2010)
ADM Item Removed (Override) - Fondaparinux 2.5 mg/0.5 mL Syringe; (see order detail)
ADM User: Labrie
ADM Item Removed (Override) - Clopidogrel 75 mg Tablet; (see order...
November 4, 2010 at 3:21 pm
Once more for the other field then, (Sorry about the non-encoding, my browser's having issues today)
SELECT top 20 tud.Value
FROM cv3taskuserdata tud
WHERE ISDATE(tud.value) = 1
SELECT top 20...
November 4, 2010 at 2:33 pm
Whoops, well, answers one question.
Another try for the first query, please?
SELECT top 20
oto.performedfromdtm
FROM
CV3OrderTaskOccurrence oto (nolock)
WHERE
ISDATE( oto.performedFromDTM) = 0
AND oto.performedFromDTM IS NOT NULL
November 4, 2010 at 2:08 pm
Can you show us the output from these queries, please? It'll give us an idea of what the data looks like in the column.
SELECT top 20
...
November 4, 2010 at 1:13 pm
Greg Edwards-268690 (11/4/2010)
CirquedeSQLeil (11/4/2010)
GilaMonster (11/4/2010)
CirquedeSQLeil (11/4/2010)
GilaMonster (11/4/2010)
Gianluca Sartori (11/4/2010)
Nothing to complain about today?Plenty, but I think most people are tired of hearing me whine about the Nightmare Project.
Nah - do...
November 4, 2010 at 12:52 pm
Use a higher precision numeric/decimal then you're going to display as. For an example:
DECLARE @n1a NUMERIC (25, 8),
@n1b NUMERIC (25, 8),
@n1c NUMERIC (25, 8),
@n2 NUMERIC (20, 4),
@n3 MONEY,
@n4 NUMERIC...
November 4, 2010 at 12:45 pm
Viewing 15 posts - 5,071 through 5,085 (of 5,685 total)