Insert SQL File lässt sich nicht speichern

Hi an Alle,

dabei schaut mein create Tabellen so aus

[SQL]drop table if exists KUNDE;
drop table if exists KONTO;

create table KUNDE(
KUNDE_ID bigint not null,
KUNDE_NAME varchar(50),
primary key (KUNDE_ID)
);
create table KONTO(
KONTO_ID bigint not null,
KONTO_NUMMER int,
KUNDE_ID bigint,
primary key(KONTO_ID),
foreign key (KUNDE_ID) references KUNDE(KUNDE_ID)
);

commit;
[/SQL]

warum kann ich mein insert.sql nicht speichern?

Danke euch Anni

Steht doch da, du hast anscheinend ein Zeichensatz-Problem und ich würde drauf tippen: US-ASCII kennt die deutschen Umlaute nicht. Also würde ich einfach das tun was die Fehlermeldung vorschlägt: Speichere die Datei mittels Save As … und dort wählst du dann sowas wie utf-8 aus.