Tagged Questions
0
votes
1answer
23 views
How to only select if 2 record are after another
I don't even don't how to ask this question but I'll show in example what I am trying to achieve.
ID NAME ACTIVITY TIMESTAMP
1 .. book timestamp
1 .. eat timestamp
...
-5
votes
0answers
25 views
Regarding the oracle query [closed]
I have the below table as shown below
CREATE TABLE "Temp"."abcfeed"
("ID" NUMBER(32,0) NOT NULL ENABLE,
"VERSION" NUMBER(20,0) DEFAULT 0 NOT NULL ENABLE,
"CREATEDDATE" TIMESTAMP (6),
...
0
votes
1answer
24 views
indexing queries in oracle
I wrote this query to find the number of purchases for which there are at least 1000 other purchases, but only if ServiceType, GST and PaymentType are the same.
SELECT COUNT(purchases)
FROM
(
SELECT ...
-1
votes
0answers
50 views
query with low cost taking too much time [closed]
why my query is taking too much time ( 30 - 60 minutes ) to execute if the cost of the query is very low ( 209 )
Here is the image of the Current Statement
Tks!
Isslerman
2
votes
2answers
90 views
how to perform this step in sql query?
I am currently doing this excel via VBA, but if I can get some help to do it with in query would be really save me lots of time.
This is 1 of like 5 things I need to do for this report I am working ...
0
votes
0answers
30 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 ...
1
vote
2answers
33 views
Oracle SQL: Using Variables in If Then Statement
I'm having trouble getting an if then statement to work in the following query:
define start_date = '&START_DATE'
define end_date = '&END_DATE'
define co_cd = '&COMPANY_CODE'
...
0
votes
1answer
18 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 ...
1
vote
1answer
29 views
Error when adding foreign key constraint
I am trying to alter a table in Oracle's SQL*Plus
I was able to create a table using the reserved word order using quotes.
I was also able to add a primary key constraint. When it comes to adding the ...
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
...
0
votes
1answer
28 views
Indexed query along with non index conditions
The following is a query that I'm executing.
select col1, col2 from table1 where col1 in (select table2.col1 from table2) and col2 = 'ABC' ;
In table1, an index is available on col2, no index is ...
2
votes
1answer
31 views
New table into Oracle db via SAS, lock table while writing
Can I lock for all access (including Oracle based queries) a table in an Oracle db via a SAS ODBC connection?
I am currently running a script in SAS which drops and replaces a table in an Oracle db ...
1
vote
1answer
44 views
SQL Oracle - max function
I need some help with this query, i need to get code name address with the most recent date per code (date1 is < date6 in this example)
Tab1
code address
====================
cod1 addr1
...
0
votes
2answers
60 views
Oracle update multiple columns in multiple tables
Need a bit of help on a query for Oracle. Basically I would like to put together a query that updates a number of columns to replace actual data with test data. To do this we need to do things like ...
0
votes
1answer
39 views
oracle declare variable integer to be used as counter
Could anyone show me an example how you would run this type of MySQL style query in Oracle?
SET @counter = 0;
SELECT (@counter+1) AS rowCount, t.username FROM USER AS t
I've seen various examples ...
1
vote
1answer
40 views
Select case mess in JFreeChart
I have a Column(cliente_x_hora, a numeric field) i put in a interval and count the number in each interval.I have 3 textfields(number of intervals,value between intervals and initial value). When I ...
-1
votes
1answer
52 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
...
-1
votes
1answer
49 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
49 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
32 views
Procedure to delete only if database higher then sysdate
Ive currently a procedure that deletes a customer a fairly simple procedure that's inside a package body. Here is the code for the procedure that runs and deletes the customer:
PROCEDURE ...
3
votes
1answer
41 views
query for selecting count(*) and columns
I have this query which fetches rows from a table and the number of rows that the query is gonna return:
SELECT tab.*,
(SELECT Count(*)
FROM mytable mtb
WHERE mtb.name = ...
1
vote
1answer
76 views
Converting Numbers to Words in MYSQL result! Using Query
I am trying to print a output as follows when I execute a query in mysql.
Name Salary Sal_in_Words
Mohan 45000 Rupees Forty Five Thousand Only
The column Salary has a value 45000 and in the ...
0
votes
1answer
25 views
spooling specific records in file using Oracle query
I want to spool 2 records from and oracle data base on the basis of a condition. SO this means I have 1000 records with fields name, address, SIN no and language (english or french). I want to spool 2 ...
2
votes
2answers
27 views
query that returns certain values which may or may not be contained in a 1-to-many related table
I have two tables where the action table may contain multiple records for each device.
I need to test create a query that tests for the presence of only 3 values in the action table and returns those ...
0
votes
0answers
29 views
Parameterized oracle query using oledb
Just wanted to verify if this is the correct syntax for performing a parameterized query in oracle using oledb:
OleDbCommand command = new OleDbCommand("SELECT DocumentName FROM Documents WHERE DocID ...
-1
votes
2answers
60 views
Select EMP with max SAL from each DEPT
I´m having a bad time with a SQL query. I´m using oracle default tables:
'EMP' TABLE
http://imageshack.us/photo/my-images/850/sinttuloxps.png/
AND
'DEPT' TABLE
...
0
votes
1answer
41 views
how to order an Oracle nested table type by index in a query
I have an Oracle nested table type defined as following:
create or replace type Varchar2ArrayType as table of varchar2(4000) ;
I know how to query a variable of this type but I don't know how to ...
0
votes
1answer
39 views
get result seperated with commas in one row
this is the query i wrote:
select d.canonical_name,
l.locale_id,
d.domain_id,
ld.display_name,
p.canonical_name as Identity_Set
from locale_domain ld
join domain d on ...
1
vote
1answer
29 views
Table aliasing not working in raw Oracle SQL queries inside Django
Considering the following Raw SQL query made in Django 1.5 to an Oracle backend that is actually working
cursor.execute("SELECT EGW.TF_BSC_CELTCHH.BSC FROM EGW.TF_BSC_CELTCHH WHERE ROWNUM <= 5")
...
0
votes
4answers
44 views
SQL Retrieve Names Based on Multiple Tables
So I have three tables. CUSTOMER(CustomerID, LastName, FirstName), PURCHASE(PurchaseID, ItemName), and TRANSACTION(CustomerID, PurchaseID, Date).
The problem I am having is that I need to get the ...
0
votes
5answers
45 views
Comparing tables information to retrieve from another
I am really stuck on this one problem. I need to create a query in which I have a table that holds the CustomerID and a PurchaseID number. In another table I have the CustomerID and the FirstName and ...
0
votes
4answers
42 views
SQL Redundant Results
Hey so I am really stuck with this one query and I am new to SQL and Oracle. So basically have a database with LastName, FirstName, Email, and State. I have another database with the skills that each ...
0
votes
1answer
54 views
select name, COUNT(*) from two different tables as a query result
CREATE TABLE CUSTOMER (
cusID VARCHAR(10) NOT NULL,
cusNAME VARCHAR(50),
CONSTRAINT CUSTOMER_PKEY PRIMARY KEY (cusID)
);
CREATE TABLE ORDERS (
cusID VARCHAR(10) NOT NULL,
item ...
0
votes
4answers
52 views
SQL Simple Query (CAPS)
I am having some trouble figuring out how to select words that have the first letter capitalized and then the rest as uncap?
Any help would be appreciated.
I tried the following:
SELECT * from ...
-1
votes
3answers
66 views
Distinct on one column only in Oracle
I would like to use distinct on the following table, but only on the 'PlayerID' column. This is what I have at the moment:
MATCHID PLAYERID TEAMID MATCHDATE STARTDATE
---------- ---------- ...
1
vote
3answers
63 views
Duplicate table in Oracle query
I have a query that looks like this:
SELECT *
FROM
employees e,
departments d1,
departments d2,
departments d3,
departments d4
WHERE e.dep1 = d1.dep(+)
AND e.dep2 = d2.dep(+)
AND e.dep3 = ...
1
vote
4answers
56 views
NOT IN with Subquery SQL Construct
ACTOR (id, fname, lname, gender)
MOVIE (id, name, year, rank)
CASTS (pid, mid, role)
WHERE pid references ACTOR id
mid references Movie id
List the movies that x has been in without y (x and y are ...
-1
votes
1answer
38 views
function that will only insert Monday-Friday?
I've created a function that will insert a customer into the database, I just wondered if it was possible to make it so it will only except inserts on Monday to Friday days at how this would be done ...
0
votes
2answers
46 views
syntax error in a join query
I have a query here:
For each country in America, give the highest mountain and its height; ordered by height.
and tables:
encompasses : country,continent
geo_mountain: mountain,country
...
1
vote
2answers
58 views
Oracle index behaviour
When I query my table for a specific object like this, I'll get an empty result set:
SELECT
a, b, c, valid_to, pk_mykey, myobject
FROM
myschema.mytable
WHERE
valid_to = to_date('31.12.9999 ...
1
vote
4answers
57 views
SQL query joining multiple tables and getting information thats in one but not the others
I am having trouble with making a query that joins three different tables and getting information from different ones.
The tables are:
TableP
DataP1 (primary key)
TableL
DataL1 (primary key)
...
0
votes
2answers
40 views
Oracle SQL help I need to count number of tickets for specific team member of a group
I need to create a report based on the following SQL query, the conditions are:
They need to be Assigned to QASP Team
Also the Status has to be Resolved or Closed, this part works but when I need to ...
0
votes
1answer
39 views
ORA-00900 sending me crazy
Hi I have created a procedure to delete customer information from a database.
Here is the code for this.
CREATE PROCEDURE remove_customer (customer_id VARCHAR2) IS
BEGIN
DELETE FROM order_line
...
0
votes
1answer
30 views
Delete procedure wont run and gives errors?
Ive created a procedure to delete data from three tables that are all linked with foreign keys but it does not run. here is the procedure.
PROCEDURE remove_customer (customer_id VARCHAR2) IS
BEGIN
...
0
votes
2answers
31 views
Calling a persistent package variable
Ive created a package and a package body that run but I'm unsure of how i can test the value held in my persistent package variable.
Here is the package code, its fairly simple just a delete ...
0
votes
1answer
77 views
SQL For Loop query
I am newbie to SQL.
I want to insert data into table using below for-loop query.
But unable to identify the issue
declare
cursor mac is SELECT DISTINCT(MAC) FROM DEVICES;
cmd varchar2(200);
begin
...
0
votes
1answer
59 views
Oracle SQL, Select and compare dates against null values
I need to select and compare the last advertised date in advert, to any null values in lease to get when an un-leased property and when it was last advertised. This is the code I have so far;
SELECT ...
2
votes
0answers
44 views
how to check which background process are running in my oracle database? [migrated]
To check all background process in oracle we can see using v$bgprocess view. I want to check which background process are active. Can anybody please help ?
Thanks
1
vote
1answer
35 views
JDBC Query Times & Performance
I was wondering if anybody has seen/used a JDBC database performance software? Basically I am trying to compare query times across MySQL, Oracle, Postgres, Hadoop, and a data virtualization solution ...
0
votes
1answer
43 views
errors in SQL Queries:invalid character
I am developing a database application with JDBC, Java and Oracle. I am getting errors in two queries,
1) Error at line 1: Invalid character
Here I am getting error in first line, I want to check for ...

