Select to view content in your preferred language

Cleaning up orphan sde logfiles

749
2
03-30-2011 12:56 PM
NickHarrison
Deactivated User
System -
SDE 9.2 SP6, Oracle 10.2.0.4, Versioned geodatabase

I have several hundred records in my SDE_LOGFILES and several hundred thousand in my SDE_LOGFILE_DATA tables that have persisted even though I have no active SDE sessions.
According to the user docs these records are supposed to be truncated when the SDE session disconnects.

http://webhelp.esri.com/arcgisdesktop/9.2/index.cfm?id=2253&pid=2243&topicname=Log_file_tables_in_a_...

Is it safe to just delete these records using SQL?
0 Kudos
2 Replies
VinceAngelo
Esri Esteemed Contributor
Using DELETE won't free the high-water storage for those tables.  You can either TRUNCATE
or DROP them (they'll get recreated in either the default tablespace or according to DBTUNE
storage rules).

- V
0 Kudos
NickHarrison
Deactivated User
Thanks Vince.

Truncate it is!
0 Kudos