HI!
Also ich bin echt am verzweifeln, weiß einfach nicht wo der Fehler sein könnte
Code
commit;
drop view cubeview;
create view cubeview as
Select region.bez, zeit.tag,product.besch, verkauf.verkaeufe from Verkauf, Region, Zeit, product
where verkauf.region_id=Region.id and zeit.id= zeit_id and product_id=Product.id;
select * from cubeview;
--select * from cubeview
-- where tag is null and bez is null and besch is null;
create or replace procedure data_cube is
bez region.bez%type;
tag zeit.tag%type;
besch Product.besch% TYPE;
verkauf verkauf.verkaeufe% TYPE;
begin
select cubeview.bez, cubeview.tag, cubeview.besch, cubeview.verkauf into bez, tag,besch,verkauf from cubeview;
dbms_output.put_line('Gebiet: '|| bez || ' Tag: ' || tag||' Beschreibung: '|| besch||' Verkaufszahlen: '||verkauf);
end;
/
show error
Alles anzeigen
ZitatWarning: execution completed with warning
procedure data_cube Compiled.
6/1 PLS-00103: Encountered the symbol " " when expecting one of the following:begin function package pragma procedure subtype type use
<an identifier> <a double-quoted delimited-identifier> form
current cursor
[/quote]
Vll kann mir jemand hier helfen