Viewing 15 posts - 1,321 through 1,335 (of 2,073 total)
We overdid the separation a few years ago and tend to integrate databases back into larger ones (from 35 to 3) except data from foreign sources. The main reason is...
January 26, 2007 at 11:16 am
Also thanks for the sqlprompt bundle. Enjoying the site everyday.
January 26, 2007 at 11:01 am
It is still a tricky matter since administrator's can do everything. (shutting down service,...)
My current solution:
*Sqlserver run under an administrator account "blabla" different than "administrator"
*Blabla added it to the sql...
January 25, 2007 at 10:28 am
The computername wasn't renamed in the past?
January 25, 2007 at 10:22 am
The securitydescriptors in master can be out of sync with a restored database. If you look in a database the login for a certain user is Null instead of user...
I...
January 16, 2007 at 10:06 am
sorry, a bit in a hurry.
check if your scripts fetches all data and are not holding transactions.
You might check this one out
January 15, 2007 at 11:55 am
Because cursors indicate a row-by-row (if this row contains ... then I'm not interested) logic whilst sql server is optimized for set-based logic (give me all that have the value...
January 15, 2007 at 11:49 am
Odd error.
What happens if you run the select at line 53?
DECLARE @dbname sysname
SET @dbname=NULL
select name, suser_sname(sid), convert(nvarchar(11), crdate),
dbid, cmptlevel from master.dbo.sysdatabases
where (@dbname is null or name = @dbname)
Which...
January 15, 2007 at 11:46 am
Try to have the application/situation run at a machine for monitoring its performance against a known setup.
http://www.sql-server-performance.com/gv_baselining_tips.asp.
also check this out:
http://www.sql-server-performance.com/sql_server_performance_audit3.asp
January 15, 2007 at 11:40 am
Also a great change from SP3 to SP4 is that the datatypes have to match in order to use an index.
*found the link
January 12, 2007 at 12:51 am
Haven't used analysis yet. Have you rebooted the machine(s)?
January 8, 2007 at 10:28 am
I can be because of parallel processing/fetching.
January 6, 2007 at 8:37 am
Have you also downloaded the analysis service pack 4? It comes in a separate package.
see
SQL2000.AS-KB884525-SP4-x86-ENU.EXE (analysis service pack)
and
SQL2000-KB884525-SP4-x86-ENU.EXE (sql server service pack)
at
January 5, 2007 at 12:04 pm
Have you tried starting sql server from the command line
with the
-dmaster_data_file_path
-lmaster_log_file_path
-eerror_log_path
parameters ?
example :
sqlserver.exe -dC:\MyNewDBLocation\master.mdf -lC:\MyNewLogLocation\master.ldf -eC:\MyNewErrorLocation\ERRORLOG
Since L & E seems to be unavailable (see event viewer)
January 5, 2007 at 10:24 am
Viewing 15 posts - 1,321 through 1,335 (of 2,073 total)