Viewing 15 posts - 106 through 120 (of 273 total)
1204 is o.k, 1205 logs more detailed information. I have had those trace flags on for about a month. I havent seen any performance degradation due to those trace flags...
May 21, 2009 at 2:44 pm
dallas13 (5/21/2009)
Can I turn trace flags ON on my server forever? Does it affects database and query performance a lot?
What kind of Trace flags R u planning to turn on?
May 21, 2009 at 2:35 pm
Steve Jones - Editor (5/21/2009)
truncate the log (backup with truncate only) and see if it grows again. Check the logspace (as shown above) regularly.
Steve, I think his database is in...
May 21, 2009 at 2:11 pm
So even if u SHRINK ur file, it will grow back to 7 GB again later on. U should make sure the queries running have transactions closed i.e. for every...
May 21, 2009 at 2:07 pm
That is really high number. It means the transaction that was active at that time when u ran DBCC OPENTRAN is taking up around 7 GB of log space when...
May 21, 2009 at 1:58 pm
It means your transaction is no longer active now. What is the size of your Log file now? Can u post the results of Following two queries too?
[Code]
DBCC SQLPERF(LogSpace) --To...
May 21, 2009 at 1:48 pm
When u run DBCC OPENTRAN, your result should be displayed as following:
Where the Bold one is ur SPID
Transaction information for database 'master'.
Oldest active transaction:
SPID (server process ID) :...
May 21, 2009 at 1:34 pm
Do a search on ur computer by filename tnsnames.ora, u will find "SERVICE_NAME" in there
May 21, 2009 at 1:16 pm
DBCC OPENTRAN also gives u SPID. U can find that query using following
[Code]
DECLARE @HANDLE BINARY(20)
SELECT @HANDLE = sql_handle from sys.sysprocesses where spid = (yourSPID)
SELECT text FROM ::fn_get_sql(@handle)
[/code]
May 21, 2009 at 12:58 pm
DBCC OPENTRAN also gives u SPID. U can find that query using following
[Code]
DECLARE @HANDLE BINARY(20)
SELECT @HANDLE = sql_handle from sys.sysprocesses where spid = (yourSPID)
SELECT text FROM ::fn_get_sql(@handle)
[\code]
May 21, 2009 at 12:56 pm
Like SQLDBA had said before, there r transactions in ur database that need that kind of log space to perform actions. Maybe u have long running queries in ur server.
May 21, 2009 at 12:00 pm
I would say for one time purposes, Import/Export wizard
May 21, 2009 at 11:55 am
doug turner (5/21/2009)
May 21, 2009 at 11:47 am
1)You can get the service name from your .ORA file (Where ever ur Oracle installation folder is) or if click on ur if u click on databases on ur enterprisemanager...
May 21, 2009 at 11:35 am
doug turner (5/21/2009)
How do your either completely truncate the log and reclaim the disk space, or keep the log files from growing too large?
1)Taking Log Backups at regular intervals.: After...
May 21, 2009 at 10:32 am
Viewing 15 posts - 106 through 120 (of 273 total)