I have 2 Oracle questions
-
How do I translate this SQL Server statement to work on Oracle?
Create table MyCount(Line int identity(1,1)) -
What is the equivalent of SQL Servers Image type for storing pictures in an Orace database?
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
You don’t need to use triggers for this if you manage the inserts:
Then, to insert a value:
For images, you can use BLOBs to store any binary data or BFILE to manage more or less as a BLOB but the data is stored on file system, for instance a
jpgfile.References: