Viewing 15 posts - 5,881 through 5,895 (of 6,486 total)
Per Microsoft - (http://www.microsoft.com/sql/howtobuy/faq.mspx), there is no concurrent licensing for SQL server. CAL's are to be acquired for every "direct and indirect user of SQL Server" (meaning - end...
November 2, 2007 at 7:36 am
Well - you're going to be running into some serious compromises. For one - "30 100-character fields" sounds like someone's being sloppy/lazy with giving you the right specifications. ...
November 2, 2007 at 7:19 am
You have to prevent totsum from being 0, since that is what is causing your divide by zero #ERROR's.
If you want that to evaluate to 0 then try:
=iif(sum(Fields!Deqsum.Value) =...
November 1, 2007 at 3:52 pm
Agreed that you summed it up fairly well, under the assumption that you are looking that the asynchronous versions of those. Anything synchronous would have a "risk" attached to...
November 1, 2007 at 3:21 pm
Assuming you want a random sampling:
declare @n int
set @n=100
select t.* from
(select *, row_number() over (Order by newID() ) as 'ranknumber' from table1) t
where ranknumber%@n=0
Or...(in the case one out...
November 1, 2007 at 2:46 pm
SELECT ACCT,
sum(case when Substr(DVC_TYPE,1,2)='SM' then 1 else 0 end) as smallcount,
...
November 1, 2007 at 2:38 pm
Unless you're an Application Server Host, why would you ever need multipl versions of the same data out there?
Now - if you ARE an application server host, and you need...
November 1, 2007 at 2:30 pm
The issue is that you're throwing a varchar into the ELSE clause (''). That won't implicit convert to a MONEY value. So - switch the ELSE portion to...
November 1, 2007 at 2:22 pm
AFAIK, this usually happens when some process OUTSIDE of the cursor deletes a row in the table the cursor is based on.
So - if job 1 opens a cursor...
October 31, 2007 at 11:58 am
There's already a system function for that: RAND().
A few things about rand():
- RAND() will generate a random number between 0 and 1, so if you want "bigger numbers,...
October 31, 2007 at 11:41 am
If the view is too cumbersome - then put the computed column in the actual table definition, and index based on that. That's what I was actually supporting (not...
October 31, 2007 at 11:12 am
Agreed - the function in the ON clause will force a table scan. Split the calculation out to a computed columns, then index the new computed column, and join...
October 31, 2007 at 10:25 am
well - you can convert them all to upper case during the grouping. You're already hurting performance with the function in the group by, so it might not stay...
October 31, 2007 at 7:12 am
Isn't that what his example is showing? gaps in prio by id?
October 30, 2007 at 12:37 pm
Lee - process looks fine. You will still need to deal with reorganizing the data so that you don't have page fragments everywhere, and then shrink the database.
October 30, 2007 at 12:33 pm
Viewing 15 posts - 5,881 through 5,895 (of 6,486 total)