Viewing 15 posts - 16 through 30 (of 81 total)
It would be useful to have this implemented...
8.4 <in predicate>
Function
Specify a quantified comparison.
Format
<in predicate> ::=
<row value constructor>
[ NOT ] IN <in predicate value>
...
October 6, 2005 at 3:38 am
I think you can simplify the query a bit too using xpath in the WITH clause...
set nocount on
DECLARE @xml VARCHAR(2000)
DECLARE @ParameterFilter TABLE(localname varchar(1000), value varchar(1000))
DECLARE @idoc int
SET @xml='<FilterString><Sender /><OurReference /><Reference>PT21 ...
October 6, 2005 at 3:17 am
optimists read no further
after a few phonecalls ... please give complete core dumps of everything your'e...
September 28, 2005 at 2:30 am
Interesting - i didn't know that isnull worked differently from coalesce either, so thanks for that .
I'm just used to using coalesce,...
September 27, 2005 at 6:16 am
wierd - dont' think I'd expect that, but haven't got access to sql server today to play with
does COALESCE(Val, 0) behave the same?
and do...
September 27, 2005 at 5:14 am
sorry - didn't read that very well did I
September 2, 2005 at 3:39 am
in a stored proc...
declare @t_seq table(Company char(1), OrderNum int, Sku int, seq_num int identity)
insert into @t_seq
select ...
select * from @t_seq
Jon
September 2, 2005 at 2:56 am
The change tracking updates can be delayed if the server is busy since the update waits until cpu processing is below a certain level. So if the server is very busy,...
September 1, 2005 at 2:34 am
Tried this on a small table here and it seems to works fine - do you have any other info/ details about your data or server set up?
August 26, 2005 at 1:23 am
Is your query parallellarisalized ? If so, are you on SP3 or prior / the latest SP ?
Found this MS KB -
http://support.microsoft.com/default.aspx?scid=KB;en-us;Q814509
Sounds similar...
August 16, 2005 at 3:38 am
If those are the only values in tblStudentOld, how about
update tblStudent
set RollStatus = 316 - o.Boarder
from tblStudent s
join tblStudentOld o
on o.StudentID = s.StudentID
August 4, 2005 at 2:51 am
A few variant possibilities - obviously this code, like my brain, comes with no warranty
set nocount on
create table #salesPerson (SPId int, SalesPerson varchar(10))
create...
July 27, 2005 at 9:35 am
Carl - could you give a few more details about what you mean by ranking.
CONTAINSTABLE is used with full text searching - the ranking in that gives you the relative...
July 27, 2005 at 8:44 am
Graham
Which version of SQL Server are you using? I've just tried something similar to your proc on a SQL2K instance and it seemed to work ok - only difference is...
May 23, 2005 at 4:18 am
If you make them go wrong ( a useful skill to have no matter what anyone says )
select GETDATE(0)
select {fn Now(0)}
they both give...
May 20, 2005 at 3:00 am
Viewing 15 posts - 16 through 30 (of 81 total)