Viewing 15 posts - 2,476 through 2,490 (of 14,953 total)
Grant Fritchey (12/27/2011)
Jeff Moden (12/26/2011)
I have a serious question for my fellow Threadizens...
Based on the fact that we can't get people to run good sets of backups despite Umptymillion articles,...
December 27, 2011 at 11:16 am
bitbucket-25253 (12/26/2011)
Revenant
I can be biased, but I would make sure that the methodology conforms to http://www.amazon.com/How-We-Test-Software-Microsoft/dp/0735624259/ref=sr_1_1?ie=UTF8&qid=1324952533&sr=8-1.
Gosh - if that is the definitive method then Lord help us...
December 27, 2011 at 11:14 am
Probably.
Yes, differential is all changes since the last full backup.
But most third party backup software does backups that count as "full" backups. Some don't (doing file-level backups instead), but...
December 27, 2011 at 10:09 am
You could use the Top () operator to do that.
declare @Rows int;
set @Rows = 5;
select top (@Rows) MyColumn
from dbo.MyTable
order by MyOtherColumn;
December 27, 2011 at 9:42 am
Yes. Just translate your Courses Purchased into hours in all cases, whether they buy hours directly or courses.
This sounds like homework or a test. Is it?
December 27, 2011 at 9:17 am
Dev (12/27/2011)
karthikeyan-444867 (12/27/2011)
LOOP ?WHILE LOOP ?
Loops are equally bad as cursors. You might only save few milliseconds (or microseconds).
And you might make it worse. While Loops are...
December 27, 2011 at 9:14 am
karthikeyan-444867 (12/27/2011)
Thats what my first thought (using cursor) on this requirement. But...i just wanted to do this without using BAD CURSOR 🙁
The "badness" of a cursor is pretty mild compared...
December 27, 2011 at 9:13 am
If you want to restart SQL Server services (SQL Server, SQL Agent), you can do that from within SSMS, by right-clicking the appropriate item and selecting Restart.
Other services, you right-click...
December 27, 2011 at 9:05 am
I've seen this before.
The index was better for the rest of the query, and since SQL Server can't estimate into a scalar UDF, it decided to use that index. ...
December 27, 2011 at 8:37 am
Is the server local (same computer as Management Studio) or remote (different computer)?
If remote, is it on the same Windows domain as the computer with SSMS (Management Studio), or a...
December 27, 2011 at 8:33 am
update a set a.[did]='z' from locn a
join acs b on a.[lid]=b.[lid]
join aco c on c.[uid]=b.[uid]
where c.[type]='c'
You want a (locn) updated where a.did = 'd', per your description:
I want to update...
December 27, 2011 at 8:31 am
The client pcs could certainly be an issue. Could also be browser version issues, if the application is browser-based. Or could be a WINE vs Windows issue, if...
December 27, 2011 at 8:25 am
Costs in execution plans are, by and large, junk data. Use the I/O and time stats instead.
Another option would be to Outer Apply the sub-query, but that's likely to...
December 27, 2011 at 7:55 am
I have to admit, I spent a couple of minutes reading and re-reading the possible answers, trying to figure some way it could possibly be something I was missing. ...
December 27, 2011 at 7:51 am
tabinsc (12/27/2011)
December 27, 2011 at 7:45 am
Viewing 15 posts - 2,476 through 2,490 (of 14,953 total)