Viewing 15 posts - 5,521 through 5,535 (of 6,486 total)
timothyawiseman (12/6/2007)
Matt Miller (12/6/2007)
December 6, 2007 at 8:25 pm
cs_troyk (12/6/2007)
Matt Miller (12/6/2007)
December 6, 2007 at 5:25 pm
Assuming you're passing the parameters as strings, you could try...
create proc myproc(@startdatestr as varchar(20),@enddatestr as varchar(20))
as
begin
declare @startdate datetime
declare @enddate datetime
select
@startdate=cast(@startdatestr+' 05:30pm' as datetime),
...
December 6, 2007 at 4:08 pm
Well - set-based processing entails a bit more than either description. Jeff's taking issue with the fact that the external query has to be evaluated one single row at...
December 6, 2007 at 3:55 pm
Have you tried:
where
orderDate between '12/5/2007 5:30pm' and '12/6/2007 5:30pm'
you can also use a CAST to make sure it goes into a datetime, but the syntax above will do the CAST...
December 6, 2007 at 3:37 pm
Also - Backups are just about the heaviest load you can put down on storage volumes. Since RAID-5 is penalized for writes - I wouldn't use that on the...
December 6, 2007 at 3:25 pm
SQL33 (12/6/2007)
December 6, 2007 at 3:10 pm
johnsql (12/6/2007)
Sergiy (12/6/2007)
And, how do you think it is sorted?I agree with Sergiy. I think about the physical order data appears in the table.
screw the physical order - I'm looking...
December 6, 2007 at 2:52 pm
SQL33 (12/6/2007)
That is a BIG IF!!! LOL. But... seriously, it needs to sort by only the sequence number for each customer link, withOUT the cuslink.
That's the point isn't it?
3...
December 6, 2007 at 2:49 pm
Jim Russell (12/6/2007)
SELECT [Elems - CPMIS].Name, [Elems - CPMIS].Typ
FROM [Elems - CPMIS]
WHERE IsDate;
works fine.
But...
December 6, 2007 at 1:52 pm
Actually - it's not incorrect. If you SORT by custlink and sequence, you end up with
5432 3
5432 21
5432 22...
December 6, 2007 at 12:20 pm
Grant Fritchey (12/6/2007)
December 6, 2007 at 11:41 am
For a little levity as to "santa" requests, here's a kind of funny take on one of those "Microsoft'isms" gone bad..... I still haven't fully recovered from the laugh...
December 6, 2007 at 10:22 am
I don't know if this will help at all, but here goes:
If you track in the parent table which "table" that particular key exists in, you can get most of...
December 6, 2007 at 8:59 am
There are settings in the rsreportserver.config file that might help with that...BOL mentions looking for this setting:
MaxActiveReqForOneUser
Specifies the maximum number of simultaneous and in-progress connections that a single...
December 6, 2007 at 8:26 am
Viewing 15 posts - 5,521 through 5,535 (of 6,486 total)