Viewing 15 posts - 43,636 through 43,650 (of 49,571 total)
Leo (10/22/2008)
I will change it to 75%.
How often are you backing up the transaction log?everynight.
Separate from the full backup?
Didn't we have a discussion on the transaction log in another thread...
October 22, 2008 at 10:07 am
Leo (10/22/2008)
The table size has nothing to do with the transaction log. If the transaction log is not huge, then it's not a transaction log problem.
Transaction Log...
October 22, 2008 at 8:31 am
What does SELECT @@version return?
DTA shouldn't be run from the server. It puts additional load on the server. For that matter, it shouldn't be run against a production server. It...
October 22, 2008 at 8:11 am
The table size has nothing to do with the transaction log. If the transaction log is not huge, then it's not a transaction log problem. You should not consider setting...
October 22, 2008 at 8:08 am
That's not a standard SQL Server error. There's also no way that a select statement alone will give a foreign key/null/unique constraint error. Those can only be thrown by an...
October 22, 2008 at 8:03 am
Where's the primary key?
Do you reload the entire 10.5 million rows every day, or are you doing incremental loads?
With profiler, the default template's pretty good, just make sure that you...
October 22, 2008 at 8:01 am
Upington? There are people living there? 😉
It's a possibility. I'd have to ask MS though, as I have no tools for doing that myself. Also we'd then have to consider...
October 22, 2008 at 2:17 am
What error do you get?
With the variables declared it parses fine. I can't run it, because I don't have your tables
DECLARE @CompanyId int, @AuthRolId int, @UserId int
SELECT tblProjects.ProjectId, tblProjects.ProjectName,...
October 22, 2008 at 2:11 am
The_SQL_DBA (10/21/2008)
October 22, 2008 at 2:05 am
Check that your log backups are succeeding.
What's the result of this query for the DB in question
SELECT name, log_reuse_wait_desc from sys.databases
October 22, 2008 at 2:02 am
Mh (10/21/2008)
I am trying to find out sql server related issues in OLTP environment.Please forward me any articles you may have on this. Thanks!
That's a pretty open-ended question. Can...
October 22, 2008 at 1:49 am
MySpace runs on SQL Server, so it's not a case of can SQL handle it, it can, but also the rest of the infrastructure needs serious consideration.
Will your network support...
October 22, 2008 at 1:48 am
DBCC SQLPERF(LogSpace) isn't deprecated in SQL 2008. There's no deprecation notice in BoL and running it doesn't fire a deprecation event for profiler to pick up.
October 22, 2008 at 1:38 am
TheSQLGuru (10/21/2008)
October 22, 2008 at 1:35 am
Can you post the table structure and some of the more common queries that are run against it? Use profiler to get an idea of the queries that Access runs...
October 22, 2008 at 1:34 am
Viewing 15 posts - 43,636 through 43,650 (of 49,571 total)