Business Intelligence With Oracle

Posted by NosaLee | Posted in Database | Posted on 18-05-2012. Tags:

I have given a seminar in Special Topics In Database Systems Course at University. It was in Turkish. I showed how can a person use Oracle Business Intelligence techniques. My Agenda is below:
•İş Zekası
•Data WareHouse
•ETL
•External Tables
•SQl*Loader
•Özet Tabloları(MVs)
•BitMap Indeksler
•Parale[......]

Read More…

Solution of ORA-01157 and ORA-01110

Posted by NosaLee | Posted in Database | Posted on 18-05-2012. Tags:

A few days ago one of my colleagues has asked me about a problem that does not allow to open database. Somehow one of datafiles of database has been removed. When we analyze, realize that the they do not need “the datafile” anymore. So we removed the datafile.
I printed out below which w[......]

Read More…

Query to Get Last Version Of Table Data With Different Methods(KEEP, FIRST, DENSE_RANK, ROW_NUMBER)

Posted by NosaLee | Posted in Database | Posted on 18-05-2012. Tags:

A general programming practise to store old snapshot of data with versioning.
For instance currency table may be updated three or more times a day.
When application developers need currency info, first they have to get last version of curency rates for given day.
For future analysis, old currencies [......]

Read More…

Parallel Processing In PL/SQL

Posted by NosaLee | Posted in Database | Posted on 18-05-2012. Tags:

Parallel processing is to run the same process-usally a heavy process- simultaneously. It is called Parallel computing in computer science. Main idea of Parallel computing is to get faster responses. Wikipedi describes as
 

 
“Parallel computing is the simultaneous execution of the same t[......]

Read More…

Veri Madenciligi(Data Mining) Nedir ve Nerelerde Kullanılır

Posted by NosaLee | Posted in Database | Posted on 18-05-2012. Tags:

Gelişen ve değişen çevre koşulları, sınırların kalkması ile küreselleşen dünya, farklı pazarlama ve ar-ge(araştırma geliştirme) yöntemleri “veri”nin değil “bilgi”nin önemini her geçen gün daha da artacak şekilde ortaya koymaktadır. İnternetin yaygınlaşması ve kolaylaşması ar-ge ekiplerinin “bilgi”ye[......]

Read More…

Solution Of “ORA-01658: unable to create INITIAL extent for segment in tablespace”

Posted by NosaLee | Posted in Database | Posted on 18-05-2012. Tags:

Today I have struggled a problem while importing a dump file to oracle 9.2.0.7 database. The problem was about “ORA-01658: unable to create INITIAL extent for segment in tablespace”. I investigated the problem and find a solution…
One tablespace was created with following command:
[......]

Read More…

Solution Of “ORA-25153: Temporary Tablespace is Empty”

Posted by NosaLee | Posted in Database | Posted on 18-05-2012. Tags:

Today I have struggled a problem while importing a dump file to oracle 9.2.0.7 database. The problem was about “ORA-25153: Temporary Tablespace is Empty”. I investigated the problem and find a solution…
Accidentally creating two temporary tablespace(TEMP and TMP), making first one [......]

Read More…

Solution of “ORA-01552: cannot use system rollback segment for non-system tablespace “

Posted by NosaLee | Posted in Database | Posted on 18-05-2012. Tags:

Today I have struggled a problem while importing a dump file to oracle 9.2.0.7 database. The problem was about “ORA-01552: cannot use system rollback segment for non-system tablespace”. I investigated the problem and find a solution…
SQL> show parameter undo_management;
NAME    [......]

Read More…

Copy Table Data Across Databases/Schemas In Oracle

Posted by NosaLee | Posted in Database | Posted on 18-05-2012. Tags:

Sometimes you need to copy table across databases/schemas. Oracle provides some utilities for them. We can summarize them as follow:
Trasportable Tablespaces
IMPD/EXPD utilities(Import/Export data pump)
IMP/EXP(Import/Export)
SQL*Loader
CTAS(Create Table As Select) with dblinks
SQL*Plus COPY command[......]

Read More…

Establishing Source Code Security With WRAP In Oracle

Posted by NosaLee | Posted in Database | Posted on 18-05-2012. Tags:

In Oracle you can wrap your source code, packages, functions e.g., with built-in wrap utility. Securing source code is an important responsibility for enterprise projects. It is possible to compile a wrapped package. It can not possible to see a wrapped source code with selecting all_source view or [......]

Read More…