Tuesday, December 31, 2013
Happy New Year 2014
Friday, December 6, 2013
Link Between PA and AR
Link between PA and AR is....
PA_PROJECTS_ALL.SEGMENT1=RA_CUSTOMER_TRX_ALL.INTER FACE_HEADER_ATTRIBUTE1
PA_PROJECTS_ALL.SEGMENT1=RA_CUSTOMER_TRX_ALL.INTER FACE_HEADER_ATTRIBUTE1
How to Display String Vertically in Oracle?
Query to display string vertically by Oracle:
SELECT SUBSTR ('&&STRING', ROWNUM, 1) Vertical
FROM DBA_OBJECTS
WHERE ROWNUM <= LENGTH (TRIM ('&STRING'));
The qwery asks String when execute in Toad or Sql Developer. Then Give String Like Rajashekar, Then it will display it as shown below.
R
a
j
a
s
h
e
k
a
r
SELECT SUBSTR ('&&STRING', ROWNUM, 1) Vertical
FROM DBA_OBJECTS
WHERE ROWNUM <= LENGTH (TRIM ('&STRING'));
The qwery asks String when execute in Toad or Sql Developer. Then Give String Like Rajashekar, Then it will display it as shown below.
R
a
j
a
s
h
e
k
a
r
Wednesday, December 4, 2013
SQL Lesson 7
Lesson 7:
III)
DQL/DRL
DQL
means Data
Querying
Language.
DRL means Data
Retrieving
Language.
This is used to get the data from Data base. DQL is also called as DRL. We can
use DQL Command to display data from Data base. The only one command in DQL is SELECT.
I)
SELECT
This command is used
to fetch the data from data base.
Syntax: Select *
from table_name;
Select col1, col2, col3
from table_name;
Ex: Select * from
EMP;
Select Empno, Ename, Sal from EMP;
Subscribe to:
Posts (Atom)