About bearparc

A software development blog for the qualified developer

Blogroll

Application Server (24)
Business Intelligence (13)
Business Logic Layer (6)
C (2)
C++ (3)
CMMI (4)
Data Mining (3)
DataMart (11)
DataWarehouse (11)
ETL (7)
FAQ – Troubleshooting (8)
Framework (4)
Hardware (10)
Informatica Powercenter (6)
Investition (2)
J2ee (8)
Java (6)
JBoss (1)
Liferay (11)
LINUX (11)
objektorientiertes Design (2)
OLAP (7)
Oracle (48)
Projektmanagement (5)
Prozeßmodelle (4)
Software (33)
SQL (24)
Uncategorized (31)
Web 2.0 (5)
Weblogic (17)
wordpress (5)
XML (2)

WP-Cumulus by Roy Tanck and Luke Morton requires Flash Player 9 or better.

with ¤ system ¤ linux ¤ memory_target ¤ this ¤ oracle ¤ supported ¤ workflow ¤ informatica ¤ specified ¤ resource ¤ acquire ¤ ora-00845 ¤ busy ¤ ora-00054: ¤ nowait ¤ 8024402c ¤ to_integer ¤ zeilen ¤
ora-00845: memory_target not supported on this system ¤ ora-00845 linux ¤ ora-00054: resource busy and acquire with nowait specified ¤ ora-00054 ¤ ora-00845 ¤ informatica workflow ¤

www.brokerbase.ch network

Search



Add to Technorati Favorites Blogverzeichnis - Blog Verzeichnis bloggerei.de Deutsches Blog Verzeichnis blogoscoop Add to Google http://www.wikio.de

SQL

« Previous Entries

Codebeispiel Oracle : Anzahl doppelter Datensätze

Friday, June 12th, 2009

select wp_id, count (*) as anzahl from tmp_Kurse group by wp_id having count(*) >1;

Oracle Codebeispiel: Löschen doppelter Datensätze in einem table

Tuesday, April 28th, 2009

Oracle speichert eine interne Indexierung mit dem Namen ROWID, DELETE FROM tmp_index WHERE rowid NOT IN (SELECT max(rowid) FROM tmp_index GROUP BY ISIN);

Beispiel alter table statement

Tuesday, August 28th, 2007

alter table table_name add ( column1_name column1_datatype column1_constraint, column2_name column2_datatype column2_constraint, column3_name column3_datatype column3_constraint );

ORA-00054: resource busy and acquire with NOWAIT specified

Monday, August 27th, 2007

Identifizieren des table lock  select object_name, o.object_id from user_objects o, v$locked_object l where o.object_id = l.object_id; Freigeben des tables 

Codebeispiel exist condition

Monday, August 6th, 2007

SELECT *

Codebeispiel SQL – EXISTS condition

Monday, August 6th, 2007

SELECT columns

insert Statement – Beispiel, einfügen eines Datesatzes

Sunday, August 5th, 2007

INSERT INTO stocks

insert statement Beispiel – Verhindern das Datensätze mehrfach inserted werden.

Sunday, August 5th, 2007

Wenn im table ein primary key auf ISIN vorhanden ist

insert statement – Anzahl der geladenen Sätze

Sunday, August 5th, 2007

Checken wieviel Sätze geladen wurden

insert Statement – Beispiel

Sunday, August 5th, 2007

Beispiel #1 – einfaches Beispiel:

« Previous Entries