Viewing 15 posts - 256 through 270 (of 479 total)
Hi Steve
It was via our partner#, I think its MS Professional Services and not enterprise which offers the 24x7 (from reading their site). I didnt winge too much with...
May 7, 2003 at 8:25 pm
I would shrink during a quiet time (if there is any) for your DBMS, get a feel for the average times taken and move the times around from there.
As for...
May 6, 2003 at 3:14 am
Hi there
Experience tells me to manage it yourself in terms of shrinking (when it happens, what is going on and sync it with other jobs that may be going on)....
May 5, 2003 at 7:12 pm
Great coverage of the topic, thanks for the article.
May 4, 2003 at 9:54 pm
Hi
Uninstall 2000, install 7 as a default instance, then install 2000 overtop with named instances... all should work a treat. Note that there are some DTS designer issues managing...
May 4, 2003 at 9:51 pm
Hi there
Try this from a MS script I have been using for some time that deals with an INI file...
set @i = 'C:\ActivityTrace.ini'
if exists (select * from dbo.sysobjects where id...
May 4, 2003 at 9:48 pm
Thanks Antares686, your a champion! ill give the SQL a go, funny enough I was pondering the case inside of the join but didnt go through with it.
Cheers
Ck
April 30, 2003 at 8:08 pm
Hi all
Microsoft has assigned bug #: 469546 to it for SS2k
This may be fixed in Yukon, doesnt get the error apparently, but returns the incorrect results.
Cheers
Ck
April 25, 2003 at 6:47 pm
Hi Guys
Whats really strange is that the developer swears black and blue that he initially created select via query analyser with no issues, the only change since that faithful day...
April 23, 2003 at 7:24 pm
Hi all
Here is another very basic test:
-- 3 levels (FAILS, BUT WORKS IN A CREATE VIEW statement and running it)
select
(select org_id
from
(select org_id
from (select org_id
from organisation...
April 23, 2003 at 1:51 am
Hi all
Following on with this..
If you wrapper the SQL in create view statement, it creates and runs perfectly.
If you wrapper the SQL in create procedure statement, it...
April 23, 2003 at 1:25 am
Hi there
I believe many SQL Server DBA's can leaver off the Oracle OFA (flexible architecture) in terms of structuring data/log and install directories for your SQL Server databases. Generally...
April 9, 2003 at 11:30 pm
Hi Andy
I forgot all about them! 🙂 this should keep the analysts off my back for a while.
Cheers
Ck
April 5, 2003 at 10:00 am
Hi all
I believe the key is in dbcc page with the:
Allocation Status
-----------------
GAM (1:2) = ALLOCATED
GAM pages record what extents have been allocated. Each GAM covers 64,000 extents, or nearly...
March 19, 2003 at 6:17 pm
From the http://www.transactsql.com site, great t-sql reference over the books online:
DBCC EXTENTINFO ('@dbname', '@tablename', @indid)
Example
--Display information about the extents in the authors table
--Clean up the display
SET NOCOUNT ON
--List information about...
March 19, 2003 at 4:51 pm
Viewing 15 posts - 256 through 270 (of 479 total)