Viewing 15 posts - 1,306 through 1,320 (of 2,052 total)
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
Part 1: inserting in a new table
Insert into newtable
(Application)
select ApplicationX from tableY
where ApplicationX is not null /*blank checking
and application1''
and not exists
(select * from newtable where application=ApplicationX ) /*dupe checking*/
repeat...
January 4, 2007 at 11:15 am
Have you checked the event logs?
January 4, 2007 at 11:08 am
off topic change
FROM vw_Referrals_Grouped
to FROM dbo.vw_Referrals_Grouped vw_Referrals_Grouped
to prevent recompiles
January 4, 2007 at 11:04 am
Having the IIS seperated will indeed lessen the contention.
Is there another candidated for the clustered index? Datetime and 10 ints seems to be large. Exchanging for a non-clustered index?
Any possibility...
December 29, 2006 at 12:25 pm
Also try to match the datatypes for index usage. If active_flag is a bit-field use active_flag = convert(bit,1)
December 26, 2006 at 10:46 am
You could try to replace the not in to not exists . With in it has to fetch all records before comparing, with exists it can cease fetching if one...
December 26, 2006 at 5:18 am
Viewing 15 posts - 1,306 through 1,320 (of 2,052 total)