Viewing 15 posts - 1,291 through 1,305 (of 2,044 total)
Hello,
Did you get an error message?.
Moving one database to another:
Possibility 1:
Detach database from source server, copy files to destination server, (attach databases back at sourceserver),attach database at destination server.
Possibility 2:
Backup...
January 26, 2007 at 11:26 am
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
Viewing 15 posts - 1,291 through 1,305 (of 2,044 total)