Viewing 15 posts - 5,506 through 5,520 (of 6,486 total)
TheSQLGuru (12/8/2007)
December 10, 2007 at 10:35 am
The error you're getting assumes that you're trying to publish to a local IIS installation. In order to do that you'd need SSRS installed on that machine. You...
December 10, 2007 at 10:25 am
Try this on:
select a.*
update a
set Repflag='X'
from volume a
where exists (
select *
from volume b
where
b.id=a.id
and b.perEndDate=dateadd(day,-1,dateadd(month,-1,dateadd(day,1,a.perenddate)))
and a.AchieveLev<b.achieveLev)
December 10, 2007 at 10:10 am
GilaMonster (12/8/2007)
An index on a column does not guarantee that data will be returned in that order. Unless an order by is specified, you cannot be sure that the data...
December 8, 2007 at 9:27 pm
You can do it a few ways. Personally I'm a fan of using .NET regular expressions to do just that, but that involves allowing CLR integration, which some are...
December 7, 2007 at 1:19 pm
cs_troyk (12/7/2007)
It is a computational model that says nothing of the physical implementation.
The one that doesn't say anything of the physical implementation is the Mathematical model. While the...
December 7, 2007 at 11:04 am
Ramesh (12/6/2007)
RichardB (12/6/2007)
Ramesh (12/3/2007)
I wonder, whose gonna help those guys who were daring to do that!!!:D
It's probably STILL trying to commit....LOL
December 7, 2007 at 9:37 am
Steve Jones - Editor (9/15/2003)
Upgrading a server tomorrow and will try some integration, but since...
December 7, 2007 at 8:41 am
Steve Jones - Editor (12/7/2007)
Never had much of a preference on mice, but let us know how it goes, Will.Matt, what's an oodle? Is that a measure for 10TB 🙂
If...
December 7, 2007 at 8:29 am
Ramesh (12/7/2007)
December 7, 2007 at 7:51 am
Christian Buettner (12/7/2007)
Hi Matt,The query I "wrote" was just a copy of the query that Chirag posted.
Oops - i guess I missed that one...sorry!
December 7, 2007 at 7:29 am
Stephanie J Brown (12/7/2007)
December 7, 2007 at 7:09 am
Christian Buettner (12/7/2007)
I am not sure if I misunderstood something, but the SQL Statement does NOT utilize a "triangular join":
Select orderid,orderdate,productid
from orders O INNER JOIN orderdetails OD
On O.orderid...
December 7, 2007 at 7:03 am
A seek means that you are looking for specific value(s) and the index provides you with the best way to do it. This also applies to specific ranges of...
December 7, 2007 at 6:51 am
I don't know if we can breach the 90 second barrier you have, but using temp tables (expecially indexed ones) to pre process some of this should pretty much guarantee...
December 6, 2007 at 8:34 pm
Viewing 15 posts - 5,506 through 5,520 (of 6,486 total)