Viewing 15 posts - 4,801 through 4,815 (of 7,497 total)
Ah, but you posted in a SQL2005 forum ... hence my reply.
for sql2000 I use this:
- sp_who2
- and the consumers :
if (object_id('tempdb..#tmpVerbruik') is null)
begin
-- tmptabelleke aanmaken
select min( @@Servername ) as...
June 6, 2008 at 5:32 am
This is one way you can do it...
http://www.sqlservercentral.com/scripts/Miscellaneous/31032/
June 6, 2008 at 5:16 am
Off course the free MS "performance dashboard" is a good way of showing it.
and this may also be a good starting point.....
-- lists the top 50 statements by input/output usage....
June 6, 2008 at 5:14 am
Mike Martin (6/5/2008)
June 6, 2008 at 12:19 am
No.
You can only do that by composing dynamic sql. :crazy:
Please have a look at: The curse and blessings of dynamic SQL
June 4, 2008 at 1:55 pm
- Keep in mind the concept of a primary key ! There must have been a reason to use this column for it ( or as part of it)
- Check...
June 3, 2008 at 8:05 am
Christopher G.S. Johnson (6/2/2008)
June 2, 2008 at 1:49 pm
- for sure an active backup to that file will lock it.
- most of us tend to (x)copy the file to a safe zone at the end of the backup...
June 2, 2008 at 1:45 pm
did you enable it to use tcp/ip ?
May 30, 2008 at 11:49 am
Just to add to the previous post...
First of all it is a good thing you plan to migrate in stead of upgrade.
- whatever you do, start with SQLServer 2005 upgrade...
May 30, 2008 at 11:42 am
Here it comes again .... :hehe:
THIS SCRIPT IS NOT INTENDED FOR SCHEDULED USAGE !! READ BOL to find out how a db-log works !
With full recovery, you need to perform...
May 30, 2008 at 5:03 am
-Check out the upgrade logs !
You'll probably find them at C:\Program Files\Microsoft SQL Server\90\Setup Bootstrap\LOG\Hotfix
After that, if I were in your shoes, I would rerun SP2.
The login mode...
May 30, 2008 at 4:53 am
Indeed using the cte for this is a great solution.
There is a little caveot concerning data usage.
You absolutely need to know where you're comming from to be able to link...
May 30, 2008 at 12:52 am
based on your query that's exactly what it should return.
SELECT FactID AS ID, EmplyID, PersonID, 'Factory' AS WorkPlace
FROM ...
May 29, 2008 at 1:55 am
Jeff Moden (5/23/2008)
... or when parallism takes over. Even then, an Order By and a OPTION (MAXDOP1) will take care of that....
:ermm:
Just a little reminder of a nice article...
May 23, 2008 at 8:08 am
Viewing 15 posts - 4,801 through 4,815 (of 7,497 total)