|
More site info...
Oracle Development | Forum profile
|
|
Forum profile page for Oracle Development on http://www.devshed.com.
This report page is the aggregated overview from a single forum: Oracle Development, located on the Message Board at http://www.devshed.com.
This forum profile page summarizes the general forum statistics such as: Users Activity, Forum Activity, and Top Authors, which are reported in either a table or graph below for a given reporting time period.
Additional forum profile information for "Oracle Development" on the Message Board at http://www.devshed.com is also shown in the following ways:
1) Latest Active Threads
2) Hot Threads for Last Week
Warning: These statistics are generated using 'best efforts' and can experience delays and reporting errors at times. Please note that such statistics do not constitute a forum's popularity and/or exact posting volumes at any given reporting period.
|
|
|
|
|
Posting activity on Oracle Development:
|
|
Week
|
Month
|
3 Months
|
|
Threads:
|
17
|
42
|
104
|
|
Post:
|
26
|
66
|
200
|
|
|
Oracle Development Posting activity graph:
|
Top authors during last week:
user's latest post:
Trouble with installation: Can...
Published (2009-11-04 11:10:00)
Please post the exact error message. If you are getting a warning for network error just ignore it and proceed further.
user's latest post:
Help with SQL
Published (2009-11-03 12:07:00)
I have the following: Table A Table B Pallet_No Pallet_No Qty Qty I need to return: - All of the Pallet_No's from Table A that are not in Table B - All of the Pallet_No's from Table B that are not in Table A - All the Pallet_No's where there is a difference in Qty b/w Table A and Table B. Thanks for your help.
user's latest post:
Trouble with installation: Can...
Published (2009-11-06 09:08:00)
Quote: Originally Posted by hattatTR I tried to solve the network problem. but i could not. And i ignored the message and installed Oracle 10g. But i got another problem. The Enterprise Manager needs to be installed. Unfortunately it is not. Now i can connect to the db only in SQLPlus. I guess i should install EM myself but i donot know how to do. It took a few days but i finally made it. I deinstalled the broken Oracle installation. Than i...
user's latest post:
Odd joining question
Published (2009-11-06 09:11:00)
The number column doesn't much help either I don't think, but thanks for the effort. Maybe this would be best handled (particularly for my Friday brain that is about fried) to create a function to return a table of some type? I've not done anything like that. I can create a custom type if necessary (but don't really want to if possible). I'm familiar with cursors so that helps also. Is there any way to create a data...
user's latest post:
Odd joining question
Published (2009-11-06 12:29:00)
Quote: This works, except I need to make the "WHERE CODE LIKE '%XX%' dynamic because we may add codes in the lookup table at any time, so the query would have to be modified manually if we add 'DD'. Then you might consider a stored procedure that walks the lookup table and builds a dynamic SQL statement and then executes it. Clive
user's latest post:
Trying to create a database,...
Published (2009-11-04 14:10:00)
Quote: Originally Posted by debasisdas check the create database command, go through it, understand it and then try to use. http://download.oracle.com/docs/cd/B10501_01/server.920/a96521/create.htm http://www.dba-oracle.com/oracle_create_database.htm Ive just read some of that and it cant be that complex... All I want to do is set up a simple database which holds a few books using php commands. (I am using a web server which has 10g oracle...
user's latest post:
Migration MySQL --> Oracle
Published (2009-10-31 07:29:00)
Some usefull converters are available on google to migrate database i use convert db for this purpose. Find Here : www(.)convert-db(.)com
user's latest post:
Help needed in creating trigger
Published (2009-11-03 11:29:00)
Hi all, In order to create this trigger, i've created a function to calculate and return business days. --------------------------------------------------------------------------- FUNCTION CME.CASE_1 (start_date IN CME_ROUT.BFDATE%TYPE, end_date IN CME_ROUT.RETDATE%TYPE) --------------------------------------------------------------------------- then, i've created a view that calls the above function as follows...
user's latest post:
Combining 2 queries SQL help
Published (2009-11-03 04:15:00)
Since you didn't post the desired result this can't be but a guess ... sql Code: Original - sql Code select * from ( select e.EMPLOYEE_NAME, count(w.pallet_no), sum(w.QTY) from pca_wms_fg w, kr_employee_v e where trunc (w.modified_date) >= Date_From and trunc (w.modified_date) <= Date_To and w.MODIFIED_BY = e.BADGENUM group by e.employee_name ) aa inner join ( select e.employee_name, sum(w.qty) from pca_wms_fg w join...
|
|
|
|
Latest active threads on Oracle Development::
Started 6 days ago (2009-11-05 19:06:00)
by clivew
I think you want something like:
SQL Code:
Original
- SQL Code
SELECT FAMILY, 'AA' AS SIMPLE_CODE, COUNT(CODE) AS TOTAL
FROM TRANSACTION_TABLE
WHERE CODE LIKE '%AA%'
UNION
SELECT FAMILY, 'BB', COUNT(...
Started 1 day, 11 hours ago (2009-11-10 07:59:00)
by LKBrwn_DBA
So, what is keeping you from creating a DDL trigger?
Code:
CREATE TRIGGER audit_compile
BEFORE ALTER ON SCHEMA scott
{pl/sql_block to verify if it's stored procedure related}
...
Started 1 day, 12 hours ago (2009-11-10 06:58:00)
by scotland87
Quote: Originally Posted by AnsuXlusive Hi
We are migrating oracle froms from 4.5 to 6i both based on window and character mode.
We have successfully migrated all the form to 6i on Linux and it is running fine.
The problem is that the menus were setup with a Menu Style of "Full Screen" in 4.5. But when run in 6i, the menu's are displayed as a single row ...
Started 1 week ago (2009-11-04 11:10:00)
by debasisdas
Please post the exact error message.
If you are getting a warning for network error just ignore it and proceed further.
Started 1 week ago (2009-11-04 10:58:00)
by debasisdas
check the create database command, go through it, understand it and then try to use.
http://download.oracle.com/docs/cd/B10501_01/ser ver.920/a96521/create.htm
http://www. dba-oracle.com/oracle_create_database .htm
Started 1 week ago (2009-11-04 11:06:00)
by debasisdas
Try to use set operator, that should solve your Qry1 and Qry2.
for the third qry try to join both the tables.
Started 1 week, 5 days ago (2009-10-30 05:34:00)
by debasisdas
Started 1 week, 1 day ago (2009-11-02 23:51:00)
by clivew
What is your objective?
I don't think you have defined it.
Of course someone smarter than me might have figured it out.
Clive
Started 1 week, 2 days ago (2009-11-02 01:19:00)
by debasisdas
You only need to understand the basic syntax of oracle, read some good book for the same.
Started 1 week, 4 days ago (2009-10-31 07:29:00)
by Expert11
Some usefull converters are available on google to migrate database i use convert db for this purpose.
Find Here : www(.)convert-db(.)com
|
|
Hot threads for last week on Oracle Development::
Started 6 days ago (2009-11-05 19:06:00)
by clivew
I think you want something like:
SQL Code:
Original
- SQL Code
SELECT FAMILY, 'AA' AS SIMPLE_CODE, COUNT(CODE) AS TOTAL
FROM TRANSACTION_TABLE
WHERE CODE LIKE '%AA%'
UNION
SELECT FAMILY, 'BB', COUNT(...
Started 1 week, 1 day ago (2009-11-02 23:51:00)
by clivew
What is your objective?
I don't think you have defined it.
Of course someone smarter than me might have figured it out.
Clive
Started 1 week ago (2009-11-04 10:58:00)
by debasisdas
check the create database command, go through it, understand it and then try to use.
http://download.oracle.com/docs/cd/B10501_01/ser ver.920/a96521/create.htm
http://www. dba-oracle.com/oracle_create_database .htm
Started 1 week ago (2009-11-04 11:10:00)
by debasisdas
Please post the exact error message.
If you are getting a warning for network error just ignore it and proceed further.
Started 1 week ago (2009-11-04 11:06:00)
by debasisdas
Try to use set operator, that should solve your Qry1 and Qry2.
for the third qry try to join both the tables.
Started 1 day, 11 hours ago (2009-11-10 07:59:00)
by LKBrwn_DBA
So, what is keeping you from creating a DDL trigger?
Code:
CREATE TRIGGER audit_compile
BEFORE ALTER ON SCHEMA scott
{pl/sql_block to verify if it's stored procedure related}
...
Started 1 day, 12 hours ago (2009-11-10 06:58:00)
by scotland87
Quote: Originally Posted by AnsuXlusive Hi
We are migrating oracle froms from 4.5 to 6i both based on window and character mode.
We have successfully migrated all the form to 6i on Linux and it is running fine.
The problem is that the menus were setup with a Menu Style of "Full Screen" in 4.5. But when run in 6i, the menu's are displayed as a single row ...
Started 1 week, 5 days ago (2009-10-30 05:34:00)
by debasisdas
|
|