Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations wOOdy-Soft on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Recent content by fmorel

  1. fmorel

    Yet another trailing slash problem

    what do you mean?
  2. fmorel

    Yet another trailing slash problem

    Hi all ! I use Apache 2.49 as an internal proxy. It itself use a remoteProxy behind a firewall to access the WWW. It works quite well, except for some (few) URLs : for example http://www.aserver.com/news/ works, but http://www.aserver.com/news does not work (proxy returns a 404), whereas...
  3. fmorel

    Media Recovery Needed

    you should put your database in archivelog mode !!! It works very well !
  4. fmorel

    Media Recovery Needed

    Before restoring the backup, you should backup (somewhere else) your crashed database.
  5. fmorel

    ora_dbw0 memory usage

    A lot is 205 Mb. Database size is around 5GB and SGA is select * from v$sga NAME VALUE Fixed Size 103396 Variable Size 87531520 Database Buffers 396623872 Redo Buffers 180224 ... but DBWR has nothing to deal with SGA... Is it a bug?
  6. fmorel

    Media Recovery Needed

    If it is a production database, I suggest that you call Oracle Support. If your database is in archivelog mode, you may try to do a "alter database recover automatic" when connected as a sysdba. If your database is not in archivelog mode, you way need to restore a full cold backup.
  7. fmorel

    ora_dbw0 memory usage

    Hi all! A database process, ora_dbw0_MYSID uses a lot of memory on my system (far too much compared to the database size). Do you know what this process is? What initialization parameters can modify this process memory usage ? Thanks a lot for answers!
  8. fmorel

    Alias For Table

    A view should work! create view my_view is ( select * from db1.apps.gl_balances where dt<xxx union all select * from db1.arch.gl_balances where dt>=xxx ) owner of my_view should have been granted the &quot;select&quot; right on apps.gl_balances and arch.gl_balances directly...
  9. fmorel

    Storage size(s) for the NUMBER data type

    Great Dave ! It is always useful to read tech-tips ! I thought I knew a good way to unchain rows (analyze table list chain rows into..), but I did not know the &quot;MOVE&quot; trick... Thanks a lot!
  10. fmorel

    write a simple filter ?

    Hi all! I am very new to Apache, and I am looking for a simple way to write a filter to modify URL in HTML content delivered by Apache in proxy mode. For example my proxy is &quot;ProxyServer&quot; it is a reverse proxy to &quot;Server1&quot; and to &quot;Server2&quot...
  11. fmorel

    Oracle license renewal

    Pabloj: Some people were complaining about oracle license fees (I do so...). So I asked in this thread. I don't want to be &quot;flamed&quot; after opening a thread on SAP DB in an Oracle user group. Did you only test that database or did you use it in production?
  12. fmorel

    Oracle license renewal

    Did anyone ever tested SAP-DB ? It is open source and seems to be better than mysql or postgres. What do you think?
  13. fmorel

    SQL Query

    When you have multiple rows and you want 1 row, you have to use grouping and aggregate functions, eg GROUP BY and sum(), max(), min() ...
  14. fmorel

    Servlet and JNI

    Thanks a lot for your answer palbano. I am on a windows environment too. The path to the DLL is in the OS PATH. I tried to copy the missing dll file to C:\WINNT and it worked (but it is not very satisfied by this workaround ...). - So why does it look in C:\WINNT and not in the PATH ? This...
  15. fmorel

    Servlet and JNI

    I tested a JAVA API that does JNI in a standard JAVA application and it works properly. I have problems using it in a servlet : I get an error message: &quot;java.lang.UnsatisfiedLinkError: no xxx in java.library.path&quot; where xxx is the name of a dll used by the JAVA API. I know that this...

Part and Inventory Search

Back
Top