Viewing 15 posts - 196 through 210 (of 335 total)
What entries are in the server network utility?
Tom
August 25, 2005 at 12:33 pm
What is the startup account being used for sql server. Are they the same on both servers? Are they both in the same domain. Do you map the user to...
March 11, 2005 at 7:22 am
I setup linked servers to our production as400/db400 databases. I use the i-series access odbc driver with a odbc linked server. I four part name my way to all of...
February 3, 2005 at 3:37 pm
Have you tried running the query through query analyzer and not through the program? What was your performance?
I have seen query's go from 1 sec to 20 min overnight...
February 3, 2005 at 6:53 am
Is there an index on the data. Run dbcc showcontig on the table to see if your table is overly fragmented. If you are doing a lot of inserts/deletes into...
February 2, 2005 at 2:39 pm
Are you running the profiler client on the server or on the server? Are you logging it to a database? Did you set it up to just look at one...
January 31, 2005 at 3:34 pm
How big can your database grow. Is autogrow on. Is there freespace in the datafile. It sounds like your database is autogrowing the datafile and the application is timing out...
January 31, 2005 at 2:58 pm
dbcc showconitg will also show you how fragmented the indexes are and could point out potential performance issues.
Tom
January 31, 2005 at 2:50 pm
You can use profiler to log the users activities.
Tom
January 31, 2005 at 2:48 pm
The following select will let you know which files are in your database.
select * from sysfiles
You can use the alter database to remove the extra log file. You have to...
January 28, 2005 at 9:24 am
I got sp_lock2 from the microsoft support site.
I would monitor it all the time and see what processes/users are creating and using tempdb that much.
Tom
January 27, 2005 at 2:01 pm
Kathi,
Sp_lock will tell you the locks present in your databases including tempdb. There is another sp called sp_lock2 (I think I got it from microsoft) it is essentially the same...
January 27, 2005 at 12:59 pm
I've tested changing the sort orders of my indexes and never saw any performance gains with them. As long as you have the join field indexed it should be doing...
January 27, 2005 at 12:53 pm
You could check to see if you are calling any sp_oa stored procedures by querying the text column in syscomments.
You only have 1 gig of memory and Sql is a...
January 20, 2005 at 2:31 pm
If the log was that big before you started doing your backups then without doing a shrink it will stay that size and not grow anymore.
DBCC SQLPERF (LOGSPACE) will tell...
January 20, 2005 at 2:26 pm
Viewing 15 posts - 196 through 210 (of 335 total)