Viewing 15 posts - 7,441 through 7,455 (of 18,926 total)
paul.knibbs (12/17/2010)
Ninja's_RGR'us (12/16/2010)
December 17, 2010 at 6:09 am
skcadavre (12/16/2010)
In the end, the tape disk was there, so I was able...
December 16, 2010 at 5:32 am
LutzM (12/15/2010)
What is the backup strategy you use? If you never performed any backup (including transaction log) you must...
December 15, 2010 at 11:25 am
evald (12/15/2010)
GilaMonster (12/15/2010)
An Order By anywhere else (subquery, function, view) does not enforce order.
I HAVE UNDERSTOOD THIS. I'M TRYING TO SAY THAT SINCE DOES NOT ENFORCE ORDER, IT IS CONFUSING!!!
Regards
Ok,...
December 15, 2010 at 9:17 am
GSquared (12/15/2010)
evald (12/14/2010)
GilaMonster (12/14/2010)
This is clearly documented. From Books Online:
When ORDER BY is used in the definition of a view, inline function, derived table, or subquery, the clause is used...
December 15, 2010 at 8:44 am
I guess I misunderstood the question.
Did you first try a restore that failed after 30%? Or did you try a restore that failed instantly?
I was under the...
December 15, 2010 at 7:05 am
Unless you have a backup (of sql scripts to rebuild everything) of the db you started to overwrite you're done for it.
December 14, 2010 at 11:52 am
Paul White NZ (12/14/2010)
WayneS (12/14/2010)
December 14, 2010 at 8:47 am
Or is there any ways to run a reorganize daily so that is splits the load?
December 14, 2010 at 8:34 am
kill the index job and then restart on offline hours.
sp_who2 to see who's blocking you (your spid is visible if the query window of SSMS).
December 14, 2010 at 8:32 am
If you specifically only shrink the log files (not the data files),
and that your select is really a simple single step select and not a whole business process then no...
December 14, 2010 at 8:05 am
LutzM (12/13/2010)
Paul White NZ (12/13/2010)
Craig Farrell (12/13/2010)
As I'm wrapping my head around this, your comment above concerns me. This approach is as valid in 2k5 as well, right?
Yes :laugh:
All...
December 13, 2010 at 10:14 am
Here's a version with the times format correct with jobs just barely past midnight
IF OBJECT_ID('tempdb..#enum_job') > 0
DROP TABLE #enum_job
DECLARE
@MxCnt INT
...
December 13, 2010 at 8:11 am
Here's a version that works on case sensitive servers. I've also refformated with SQL Refactor.
IF OBJECT_ID('tempdb..#enum_job') > 0
DROP TABLE #enum_job
declare
@MxCnt INT
...
December 13, 2010 at 6:20 am
That question is too large for a forum thread... read on all you need here :
December 10, 2010 at 7:22 am
Viewing 15 posts - 7,441 through 7,455 (of 18,926 total)