Create Function create or replace function fu_add(p_in in number) return number as v_out number; begin v_out := p_in + 1; return v_out; end; exec dbms_output.put_line(fu_add(10)); select fu_add(10) fr… mehr →
R.H. / DErhde wrote 2 weeks ago: Create Function create or replace function fu_add(p_in in number) return number as v_out number; beg … more →
rhde wrote 2 weeks ago: Create Procedure Zum Anlegen oder Ändern einer Procedure wird das Recht „CREATE PROCEDURE … more →
rhde wrote 2 weeks ago: PLSQL um in Oracle mehrere Zeilen „gleichzeitig“ einzufügen: declare type t_emp is table … more →
rhde wrote 2 weeks ago: Mit PLSQL eine komplette Oracle Tabelle in ein Array einlesen: declare type t_emp is table of emp%ro … more →
rhde wrote 2 weeks ago: PLSQL-Code für SQL*Plus oder SQL Developer declare v_count number; v_owner all_tab_columns.owner%typ … more →
codergott wrote 2 months ago: Print Version SET SERVEROUTPUT ON DECLARE l_version VARCHAR2(100); l_compatibility VARCHAR2(100); … more →
chrtre wrote 10 months ago: Wenn man mit Oracle und XML startet, sollte man sich zunächst das Dokument Oracle XML DB Developer’s … more →
oviwan wrote 1 year ago: Using SQL injection, a hacker can pass string input to an application in hopes of gaining unauthoriz … more →
skseo wrote 1 year ago: Softwareentwickler in München zur Personalvermittlung Bei unserem Kunden können Sie sich verwirklich … more →
oviwan wrote 2 years ago: With the online SQL Formatter you can easily format your SQL’s to a nice format. Before SELECT … more →