batch queries SqlServer vs Oracle

  • Thread starter Thread starter Kris Desmadryl
  • Start date Start date
K

Kris Desmadryl

SqlServer allows multiple sqlstatements in one SqlCommand by using ';'
This can for instance be used for refreshing after an insert statement or
for filling mutiple datatables with one command.

I don't think Oracle can do this, I hope I'm wrong...

Kris.
 
Kris said:
SqlServer allows multiple sqlstatements in one SqlCommand by using ';'
This can for instance be used for refreshing after an insert statement or
for filling mutiple datatables with one command.

I don't think Oracle can do this, I hope I'm wrong...

Oracle can do this, but Oracle is removing the possibility from the
..NET providers, starting with the 10g provider and the new 9i providers
will have this too if I'm not mistaken.

In other words: don't batch statements.

Frans.

--
 
Or don't use Oracle ;-)

Frans Bouma said:
Oracle can do this, but Oracle is removing the possibility from the
..NET providers, starting with the 10g provider and the new 9i providers
will have this too if I'm not mistaken.

In other words: don't batch statements.

Frans.

--
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top