Forum: Oracle 21 Days Ago |
| Replies: 7 Views: 737 Then you need to try this (http://www.toadsoft.com/lic_agree.html).
TOAD does not come in that price range. |
Forum: Oracle 22 Days Ago |
| Replies: 7 Views: 737 How much you are ready to invest for the tool ? |
Forum: Oracle 24 Days Ago |
| Replies: 7 Views: 737 if you are ready to pay use TOAD or PLSQL DEVELOPER, the best possible tools in market. |
Forum: Oracle Aug 13th, 2009 |
| Replies: 3 Views: 677 Try the following sample code.
SELECT code,substr(code,instr(code,'-',1)+1,2) from table_name; |
Forum: Oracle Aug 1st, 2009 |
| Replies: 5 Views: 573 you nee to create a table with check constraint and default values.
try this
create TABLE table1
(ID INT,
status varchar2(10) DEFAULT 'Available',
CONSTRAINT con_chk1 CHECK (status IN... |
Forum: Oracle Jun 16th, 2009 |
| Replies: 5 Views: 2,145 the syntax that you are using is not Oracle syntax. |
Forum: Oracle Mar 9th, 2009 |
| Replies: 4 Views: 720 then you need to populate records from the source to a staging (intermediate) table before actually inserting them to your main table.
so with each load you need to truncate your table and load... |
Forum: Oracle Mar 9th, 2009 |
| Replies: 4 Views: 720 The simplest method will be create a view based on the table with last five days record. That will be always refreshed every time you run any query on the view. |
Forum: Oracle Jul 11th, 2008 |
| Replies: 3 Views: 2,263 please find the connectionstring at
http://www.connectionstrings.com/?carrier=oracle |
Forum: Oracle Jun 25th, 2008 |
| Replies: 4 Views: 1,861 i also can't find anything like that on sql developer 1.2.1 |
Forum: Oracle May 14th, 2008 |
| Replies: 5 Views: 2,405 If you are familar with oracle procedures then you just need to take care of the syntax and just implement the logic in PLSQL. |
Forum: Oracle May 2nd, 2008 |
| Replies: 4 Views: 5,416 using the cache increases the performance but that can create problem in some circumstances also. |
Forum: Oracle Apr 22nd, 2008 |
| Replies: 18 Views: 4,726 There are other better GUI tools like TOAD and PLSQL DEVELOPER but you need to purchase those. |
Forum: Oracle Apr 22nd, 2008 |
| Replies: 18 Views: 4,726 You can use the inbuild tool SQL*PLUS. if you want GUI then can download and use SQL DEVELOPER for free from oracle site. |
Forum: Oracle Mar 18th, 2008 |
| Replies: 4 Views: 3,108 You need to parse sysdate+1+2/24+20/(24*60) to proper format before processing in database. |
Forum: Oracle Feb 21st, 2008 |
| Replies: 6 Views: 2,987 Are you able to connect to the database from windows PC ? |
Forum: Oracle Feb 20th, 2008 |
| Replies: 6 Views: 2,987 Please findout the details here (http://www.connectionstrings.com/?carrier=oracle) |
Forum: Oracle Feb 5th, 2008 |
| Replies: 2 Views: 3,116 To connect TOAD to oracle you simply need to pass the username ,password and the database name. IF connecting to any other server ,you need to midify the entries in the TNSNAMES.ORA file. |
Forum: Oracle Feb 5th, 2008 |
| Replies: 6 Views: 1,980 First of all Create is a DDL.
So commit is not required for that.
Check to ensure that you created the table in that schema. |
Forum: Oracle Nov 27th, 2007 |
| Replies: 16 Views: 25,782 You can start with anything simple. But you should have functional knowledge of the same.
can go for as simple as library managemnet or somthing similar. |
Forum: Oracle Nov 26th, 2007 |
| Replies: 16 Views: 25,782 Dear shweta
My company pays me for each line of code i write. How do you expect someone writing all the code for you that to in a free forum like this. You need to develop your own project by... |
Forum: Oracle Nov 7th, 2007 |
| Replies: 2 Views: 1,872 That is because both the variables P_ID and P_NAME are IN type variables. So you cant asign value to a In type variable in a select into statment. |
Forum: Oracle Sep 7th, 2007 |
| Replies: 16 Views: 25,782 can u kindly mention what is the datbase u want to use. |
Forum: Oracle Aug 2nd, 2007 |
| Replies: 4 Views: 2,261 I does for DML opeartions. And status changes for DDL. |
Forum: Oracle Aug 1st, 2007 |
| Replies: 4 Views: 2,261 Please post your question clearly , what exactly is your requirment. |
Forum: Oracle Jun 28th, 2007 |
| Replies: 3 Views: 8,055 try using the predefined package dbms_lob to get some info regarding that. |