Viewing 15 posts - 6,691 through 6,705 (of 7,466 total)
IMO you should alter key :
[HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Microsoft SQL Server\instancename\MSSQLServer\SuperSocketNetLib\Tcp]
"TcpHideFlag"=dword:00000000
"TcpPort"="1433"
"TcpDynamicPorts"=""
or
[HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\MSSQLServer\MSSQLServer\SuperSocketNetLib\Tcp]
"TcpHideFlag"=dword:00000000
"TcpPort"="1433"
"TcpDynamicPorts"=""
I hope this helps
February 16, 2005 at 12:39 am
print 'Free Space'
print '----------'
exec master.dbo.xp_fixeddrives
print 'Memory'
print '------'
exec master.dbo.xp_msver
print 'Database Configuration'
print '----------------------'
exec master.dbo.sp_configure
print'DB Size'
print'-------'
exec master.dbo.sp_databases
print 'Linked Servers'
print '--------------'
exec master.dbo.sp_helplinkedsrvlogin
print 'Windows info'
print '------------'
exec master.dbo.sp_server_info
February 16, 2005 at 12:31 am
in addition to Steve's responce:
If you're running sql2k sp3 standard edition on a multi-proc-box, you might encounter this bug (fix available) : FIX: A Parallel Query with a COUNT Aggregate...
February 16, 2005 at 12:08 am
check sp_pkeys and sp_fkeys in books online
February 14, 2005 at 7:53 am
Keep in mind your restore-time will depend on your network speed / availability !
maybe this site can help you calculate the needed time :
http://www.homenethelp.com/web/explain/about-network-speeds.asp
February 14, 2005 at 2:19 am
use master
go
alter database tempdb modify file (name=tempdev,filename='E:\MSSQL\DATA\TEMPDB.MDF')
go
alter database tempdb modify file (name=templog,filename='E:\MSSQL\DATA\templog.ldf')
go
-- RESTART SQL SERVER !!!!!!!!
SHUTDOWN
Startup sqlserver with sqlserver service manager (don't forget sqlagent !)
Cleanup old files !
use tempdb
go
exec sp_helpfiles
go
check...
February 14, 2005 at 12:39 am
is autostats enabled ?
run sp_updatestats / dbcc updateusage once in a while (even with autostats on)
Check again.
Still differences ?
Is your sql2k on sp3a and on a multi-proc box ? if...
February 14, 2005 at 12:14 am
check your sqlserver logs. If sa-password has been altered, it records a line in the sqlserver errorlog.
Don't get confused with windows authentication !
If you login using windows authentication, there is...
February 14, 2005 at 12:05 am
Restore database yourdb
from DISK = '\\UNCservername\path\backupfile.bak'
Check restore in books online
February 10, 2005 at 1:20 am
for this you don't need "case" but correlated subquery
select * from dyna.dtaTenant t
where not exists
(
SELECT 1
FROM dyna.dtaTenant
INNER JOIN dyna.ctlLinks
ON dyna.dtaTenant.DyKey =...
February 10, 2005 at 1:02 am
One of our customers stated he didn't need backups copied to a safe place.
When he tested his backup-power-system there was this litle problem where in stead of 220V the...
February 10, 2005 at 12:08 am
only one client ?
The more stupidities they produce, the more they'll need people like us
Make it...
February 9, 2005 at 7:24 am
how about using transactions to get isolation ?
Offcourse everything has a price !
CREATE PROCEDURE GetColor
@OutRowID INT OUTPUT
AS
BEGIN
-- print statements added for debugging
SET NOCOUNT ON
declare @trancount int
set @trancount...
February 9, 2005 at 12:28 am
firts : ALTER DATABASE yourDB Set [RESTRICTED_USER , ]
READ_only WITH ROLLBACK IMMEDIATE
then perform your restore.
After restore, the db will be in the same state as it was when...
February 9, 2005 at 12:03 am
Viewing 15 posts - 6,691 through 6,705 (of 7,466 total)