Viewing 15 posts - 346 through 360 (of 446 total)
check if this helps.
if exists (select * from dbo.sysobjects where id = object_id(N'[dbo].[DiskAvailableSpace]') and OBJECTPROPERTY(id, N'IsUserTable') = 1)
drop table [dbo].[DiskAvailableSpace]
GO
CREATE TABLE [dbo].[DiskAvailableSpace] (
[ID] [int] IDENTITY (1, 1) NOT NULL ,
[DriveLetter]...
April 2, 2008 at 9:59 am
Mark Horninger (3/24/2008)
Nice work! do you have a link to download the toolbox?
http://technet.microsoft.com/en-us/bb738014.aspx
It will ask you to register with microsoft. Its a huge file of 280...
March 24, 2008 at 8:20 am
Its a bug in replication in 2005 and is fixed in SP2. Apply SP2 but you cannot revert back sp2 on 2005 server. So, test this on...
March 20, 2008 at 12:14 pm
for SQL Server 2005
create table #DBUSERS
(
DBNAME varchar(50),
USERNAME varchar(50),
MEMBERNAME varchar(50),
OBJECTNAME varchar(100),
PERMGRANTED varchar(200),
PERMDENIED varchar(50),
COLUMNPERM varchar(10)
)
declare @cmd nvarchar(4000)
declare @cmd1 nvarchar(4000)
set @cmd =
'insert into #DBUSERS (DBNAME,USERNAME,MEMBERNAME)
select...
March 20, 2008 at 12:09 pm
Dinu E Anastasiu (3/19/2008)
Is there another...
March 19, 2008 at 2:40 pm
Can you please elaborate the question in detail? I didn't get it?
March 19, 2008 at 1:28 pm
Priya20001mu (3/19/2008)
Can anyone tell me why i am getting this error msg? I am running this trace file through stored procedures, not through profiler.
If anyone has a solution to this,...
March 19, 2008 at 11:36 am
You should take the backup on same server and then move backup to another server using xcopy or robocopy. DBA job is to reduce the risk and worst if...
March 18, 2008 at 1:12 pm
I agree with Jason. I did the same thing. after SQL Data compare, created Logins and users and mapped them.
You can download a 30 day trial version.
March 18, 2008 at 1:04 pm
SQLServerLifer (3/18/2008)
Yes Jason. Check out this linke http://www.sqlteam.com/forums/topic.asp?TOPIC_ID=64044 for the full scans/sec and other acceptable counter values.DAB
Thanks DAB. useful link. I was in search for these counters for perfmon...
March 18, 2008 at 12:58 pm
check these links. I am not sure if this is what you are looking for.
http://www.sql-server-performance.com/articles/per/stress_test_part3_p1.aspx
March 18, 2008 at 12:53 pm
select database name from the drop down list in each job step or use
use Databasename
Go
in each step.
March 18, 2008 at 11:17 am
You can change the value of OrigFillFactor column in sysindexes table for that particular index. You have to change it before executing DBCC INDEXDEFRAG.
March 18, 2008 at 11:14 am
Use master
declare @DBName varchar(35),
@STR varchar (255)
declare DBRecoveryModelGenerator_cursor cursor for
select name from sysdatabases
where category...
March 18, 2008 at 11:03 am
I had the same issue. I had to uninstall SQL Server 2005 instance, restarted the server and reapplied SP2. Mine was active/passive cluster. Worst thing I found about...
March 18, 2008 at 10:59 am
Viewing 15 posts - 346 through 360 (of 446 total)