[Date Prev][Date Next][Thread Prev][Thread Next]
[Author Index] [Date Index] [Thread Index]
[SQR-USERS Info] [SQRUG Home Page]

Re: Updating a table from SQL



can you specify error description

Arshad Pervez

> -----Original Message-----
> From: Michael Prodor [SMTP:mprodor@QUALCOMM.COM]
> Sent: Wednesday, September 22, 1999 1:41 PM
> To:   Multiple recipients of list SQR-USERS
> Subject:      Updating a table from SQL
>
> Is there an easy way to update / inserting into  a table, using a flat
> file
> at the UNIX level? We are currently running Oracle 8 on Sun.
>
> I've tried building a statement that looks like:
>
> INSERT INTO blah
>   (a,b,c,d,e)
> VALUES
>   ('A',2,3,4,5),
>   ('B',9,8,7,6),
>    ('C', 5,4,3,2),
> .
> .
> .
>
> but I keep getting a syntax error.
>
> Any help would be appreciated.