0
votes
1answer
34 views

Returning distinct email addresses of multiple users with duplicate emails

I have a database that has the following fields Create table users { id int NOT NULL, username varchar(255), email varchar(255), signup_date date, PRIMARY KEY(id) } Create index user_index On users ...
3
votes
2answers
73 views

Query not using Index --

My question concerns Oracle 11gr2 and the use of indexes in SQL queries. Please help me with issue below, I am unable to use index on this query: SELECT ListingManagerID, FirstName, ...
-1
votes
1answer
52 views

Creating a function to check if two items exists in the table together

I am currently working on this code to check the status of an employee and I want to create a new login function: create or replace FUNCTION get_status_by_employee_id ( p_employee_id NUMBER ...
0
votes
3answers
58 views

Creating a Procedure in PL/SQL to display all information from a table

As the title states, I am trying to create a procedure to display all information about employees(Employee_ID, NAME, EMAIL_ADDRESS, HIRE_DATE, and UPDATE_DATE). The catch is that if the employee_id ...
-2
votes
1answer
31 views

Cant login to Oracle database [closed]

I am using Oracle 10g. When I try to login to the isqlplus via cmd, browser or SQL PLus client i get the error ERROR - ORA-01034: ORACLE not available ORA-27101: shared memory realm does not exist... ...
-1
votes
0answers
21 views

I hv to create table for items purchased for every diff user who is registered & sign in, so to retrieve afterward to Mycart Page?

String uname=(String) request.getAttribute("uname"); String pro_id= request.getParameter("pro_id"); String pro_name= request.getParameter("pro_name"); String pro_price= ...
0
votes
1answer
30 views

display all records on outer join

I have one table where for a particular project, dates for 9 months are stored (given below) 01-01-13 50036 027490101 WO12PS00003 01-02-13 50036 027490101 WO12PS00003 01-03-13 ...
1
vote
4answers
47 views

Do I need a id column in audit table?

Many table designs I see around has a id column as a primary key. For example log_id in some Logging table, event_id in some event table and so and so. This column would have no dependency on any ...
0
votes
0answers
53 views

Execute empty nested sql script

I have a SQL*Plus script that contains several nested scipts, following this schema: @Script1; @Script2; @Script3; My problem is some of the nested script could be empty,they exist but are blank ...
0
votes
1answer
25 views

Grant permission from one user to another in Oracle

I want to know how to grant permission of all database objects a particular user has access to to another user. To illustrate, there are four users in Oracle database: A, B, C, and D. User A does ...
0
votes
2answers
30 views

How do I convert an Oracle Date object/Long into a javascript date?

I'm querying a web service that returns a date from an Oracle database that looks like this: /Date(1369519200000)/ but I haven't the slightest clue what the value of this Long represents, so I ...
0
votes
2answers
51 views

Doctor scheduling database design

I got this below user interface for scheduling functionality. I need to setup the doctors available time for some days for each week of the month. How should i create the table for handling this. ...
0
votes
1answer
22 views

Counts over a large set of records in DB

I have a table [ID,ITEM_NAME,ITEM_PRICE,ITEM_STATUS,ITEM_TYPE,ITEM_OWNER,ITEM_DATE] The application can query the table with any number of search conditions like with item date and/or item owner etc. ...
0
votes
0answers
32 views

How to generate xml from Oracle DataBase?

I'm connected to my Oracle Database which I use to run queries with edmx. Now I'd like to generate an xml file of my database. I've been looking DataSet and DataReader classes but I didn't find any ...
0
votes
0answers
20 views

oracle internal fatal error ora-07445-->calling function:ksmpgd_scan_pga_heaps()

Error information: ORA-07445: exception encountered: core dump [ksmpgd_scan_pga_heaps()+92][SIGSEGV][Address not mapped to object][0xFFFFFFFF7FFE617C][][] I have not Metalink account of Oracle,who ...
0
votes
0answers
32 views

is it possible to update an existing row in DB, using liquibase?

Tried to find an answer to this question, but couldn't. So, for example I have this table: TABLE: col1 | col2 123 0 124 1 and I want to change col2 value to 1 and this is how I'm ...
0
votes
1answer
19 views

Create Data dictionary of database B

I have 2 database server main database A and other database B. Database B is same as A but the name of tables and some of the field name are different, but data inside is almost the same. Database B ...
0
votes
2answers
46 views

create or replace table in oracle pl/sql

i need a script which creates table or if it already exist drops it, and when recreates table. After some research i have found out that CREATE OR REPLACE TABLE in pl/sql doesn`t exist. So i come up ...
0
votes
4answers
41 views

Connection to Oracle Database with Java

I can't connect to my Oracle database server. This is the code : import java.util.*; import java.sql.*; import java.io.IOException; public class Knigi { public static void main(String[] args) { ...
0
votes
0answers
46 views

Creating new Database in Oracle 10g XE

Problem with creating new Database in Oracle Express Edition. Platform: Ubuntu 12 Oracle : 10g Express edition I am trying to create a new database in oracle and I took the help of Oracle Docs to ...
0
votes
3answers
64 views

Query an employee from two or more departments

I'm having an error when executing the query. I don't know what seems to be the problem. I'm trying to query the DB to to find out the staffs from two or more departments. (ie. Staff_ID = 1, works ...
0
votes
1answer
36 views

Oracle - Query address from multiple Column

I am trying to query a Staff's addresses (Home and Correspondence Address). What I have for Staff table is Staff_ID, First_Name, Last_Name, Home_Adress, Corr_Address And for Address table is ...
-2
votes
1answer
39 views

How can one build a class that can dynamically build parameterized SQL statements? [closed]

I have a PHP project that currently uses a "Handler" class to do all of the database querying. However, it basically builds a SQL string using sanitized variables and I would like to switch this to ...
0
votes
1answer
42 views

Alternatife Way to Changing Username In ORACLE DB

Is there a way to change username. I want to make test on a database which is already using by others. So I came up with the idea that i create a new DB and creates all the tables functions ...
0
votes
2answers
51 views

How to create a temp variable in database oracle query?

Similar to programming languages, is it possible to create a temporary variable and define it a value? e.g. String date = '12-MAY-12' Select COUNT (*) FROM TABLEX WHERE TABLE_DATE < DATE;
1
vote
0answers
45 views

Sort order of NULL values in Oracle for all queries in session

The sort order of NULL values in Oracle can be configured for single query using NULLS FIRST and NULLS LAST. I can't change the way my queries are generated (they are generated by some library), so ...
1
vote
0answers
9 views

Tablespace on ephemeral storage [migrated]

For performance reasons in some scenarios, e.g. Amazon EC2, you have access to a faster and cheaper storage device, which loses all its data on reboots, so it is called "ephemeral". This question is ...
0
votes
2answers
24 views

Oracle DB - Set Input Number to exact length

I am trying to set a constraint where user are only allowed to input 11 digits into the Number Data Type (Phone Number). I've tried alter table "booyeah" add constraint "booyeah_CC1" check ( ...
1
vote
1answer
42 views

Find and replace, looped through all tables in oracle DB

I am trying to loop through every table in an oracle DB, and find and replace a string value. I want to find all instances of a string value, replace it with another string value, for all entries in ...
1
vote
3answers
55 views

The impacts of increase column's size in Oracle

I've a script SQL script: alter table xx_vms.es_lot_updates modify (routing_list varchar2(1000)); The previous size of this column is 255. Now I increase its size to 1000. But in this table, the ...
0
votes
1answer
39 views

PL/SQL value of a boolean after execution using SQL%NOTFOUND

Just started learning about PL/SQL and the cursor attributes. I am confused to how the SQL%NOTFOUND works. In the below code should v_1 compile to true at all times? DECLARE v_1 BOOLEAN; ...
0
votes
1answer
65 views

Why am i getting ORA-01843: not a valid month error?

I've asked this question in the previous post (ORA-01843: not a valid month?) but its changed since then and i thought it would be better to make it clearer from the start. I am receiving this error ...
0
votes
0answers
35 views

Oracle : How find all the data loaded on previous day? [migrated]

Issue: Data Loading into development environment from production database My production database is 40gb but I do not want all of those 40gb of data into my dev env and so my question is How can I ...
-1
votes
0answers
35 views

Possibles issues to migrate oracle database 10g to 11g? [closed]

Actually an application has been upgraded to use Oracle 11g , older version of the application used Oracle 10g. Basically what needs to be checked is the differences in the schemas of the two ...
0
votes
0answers
13 views

Database Volume Statistics in Oracle - dba_hist_tbspc_space_usage [migrated]

I am looking for generating a Database Volume Consumption Report in Oracle 11g based on a specific time period. For e.g 1) Total Volume( Excluding Index Size) at 12 AM 2) Total Volume( ...
-1
votes
1answer
53 views

PL/SQL: SQL Statement ignored?

Hi everyone getting this error message when trying to create a trigger and its got me a little stumped. Here is my trigger code. CREATE OR REPLACE TRIGGER CUSTOMER_AD AFTER DELETE ON CUSTOMER ...
0
votes
2answers
44 views

Trigger on delete where customers have had an order

I am creating a previous customers table for customers who are deleted. I'm wanting to create a trigger after data has been deleted from a customer table. However i don't want all the customers to be ...
-1
votes
2answers
32 views

oracle rownum invalid identifier

I'm trying to get the top 3 max salary of each department however at the end of my code at q.salary i receive the following error: ORA-00904: "Q"."SALARY": invalid identifier here is my code with ...
0
votes
1answer
26 views

Finding constraints enforced across multiple tables in orcale

I have a database, with the following tables EMP, DEPT, CLIENT and PURCHASE. I am using Oracle 11g express edition I have executed the following SQL statement to find out constraints on table : EMP ...
0
votes
2answers
66 views

PL/SQL Function returns ORA-06503: PL/SQL: Function returned without value

I have to write a pl/sql code(actually a function) which returns a postcode when by taking the suburb as its parameter the code is like this: create or replace FUNCTION get_postCode(p_suburb IN ...
-1
votes
1answer
28 views

Oracle TimeStamp update/insert year interpret

Am I right in thinking within Oracle, if I were to do a an Update/Insert to a TimeStamp column with the following... UPDATE tblBlah set TimeStampColumn = to_timestamp('01-01-99 12:00 AM', 'MM/DD/YY ...
1
vote
2answers
44 views

PL/SQL Script verification

I have a date column. Now my task is to create a udf. The basic purpose of this UDF is to check an year of a date. This is in ORACLE. If year is less than 1753 assign year as 1753 and return date. ...
0
votes
0answers
38 views

Inserting data into an Oracle Database

Can I please have some help to insert some data into a table. I have created an Peripheral_objtyp object and then created a table from this object: create type Peripheral_objtyp as Object ( PeriphNo ...
2
votes
2answers
82 views

How to increase dbms_output buffer?

I tried to debug my dynamic query via dbms_output but seems like the query string is too long for dbms_output buffer. I got : ORA-06502: PL/SQL: numeric or value error: character string buffer too ...
-1
votes
1answer
51 views

PL/SQL: IF ELSE statement and working with an invalid string from user input

I am taking in user input from a database. When the user enters an invalid name that is not in the database I am trying to get an error message saying that the input is not in the database. I cant ...
2
votes
1answer
51 views

UTL_MAIL message attribute calling OWA_UTIL.cellsprint procedure Oracle

Hi I have the following html snippet, I want to send via email in my procedure. How do I put that in my message attribute of UTL_MAIL. Should I put it in some variable and if so how? If there is any ...
0
votes
1answer
44 views

Update materialized view in oracle 11g

I want to update materialized view every 5 min such that it does a delta update not a full update. Can i use last modified date, and just update data that has been updated? my question is: 1) how to ...
0
votes
0answers
28 views

Oracle document generation

I need to generate the documentation of an Oracle database. I use SQL Developer's Generate DB Doc tool, but the generated html it's empty ( it has all the links to tables, index etc, but that html ...
1
vote
1answer
55 views

Using PL/SQL to develop relationship among two tables?

I am new to the PL/SQL language and I am working on a problem and was looking for advice to the right direction to go. Any help would be greatly appreciated! I have an Employee table and a Building ...
1
vote
1answer
71 views

Handle huge amount of data using Java EE [closed]

We have a Java EE application that support Oracle, MySQL and SQL Server vendors. we are using a view model to view the fetched data from DB, also using pagination in the DAO model, and that's working ...

1 2 3 4 5 44