Click here to Skip to main content
15,921,577 members
Home / Discussions / Database
   

Database

 
GeneralRe: Converted sql Query to Oracle Pin
Vimalsoft(Pty) Ltd15-Jul-09 21:34
professionalVimalsoft(Pty) Ltd15-Jul-09 21:34 
GeneralRe: Converted sql Query to Oracle Pin
sandhya1415-Jul-09 21:39
sandhya1415-Jul-09 21:39 
GeneralRe: Converted sql Query to Oracle Pin
Vimalsoft(Pty) Ltd15-Jul-09 21:47
professionalVimalsoft(Pty) Ltd15-Jul-09 21:47 
GeneralRe: Converted sql Query to Oracle Pin
sandhya1415-Jul-09 21:54
sandhya1415-Jul-09 21:54 
GeneralRe: Converted sql Query to Oracle Pin
Vimalsoft(Pty) Ltd15-Jul-09 21:59
professionalVimalsoft(Pty) Ltd15-Jul-09 21:59 
GeneralRe: Converted sql Query to Oracle Pin
sandhya1416-Jul-09 19:10
sandhya1416-Jul-09 19:10 
GeneralRe: Converted sql Query to Oracle Pin
Vimalsoft(Pty) Ltd16-Jul-09 20:35
professionalVimalsoft(Pty) Ltd16-Jul-09 20:35 
GeneralRe: Converted sql Query to Oracle Pin
sandhya1416-Jul-09 20:45
sandhya1416-Jul-09 20:45 
Am new to oracle...can u just help me to convert the given below sql query to oracle?


create PROCEDURE [dbo].[PEAP_SelectEmployeesByAppraiser]
( @AppraiserID varchar(12) )
AS
SET NOCOUNT ON;
Create Table #PEAP_SelectEmployeesByAppraiser_All
(EmployeeID varchar(6) null, SurNameFirstName varchar(150) )
Insert into #PEAP_SelectEmployeesByAppraiser_All
SELECT emp_code AS EmployeeID, + emp_code + ' ' + l_name + ' ' + f_name AS SurNameFirstName FROM
emp_master WHERE (Appraiser = @AppraiserID)
Insert into #PEAP_SelectEmployeesByAppraiser_All
SELECT emp_code as EmployeeID, + emp_code + ' ' + l_Name + ' ' + f_Name AS SurNameFirstName FROM emp_master
WHERE (Reporting_To = @AppraiserID) and isnull(Appraiser,'') = ''
and emp_code not in (select employeeid collate database_default from #PEAP_SelectEmployeesByAppraiser_All)
Select Distinct EmployeeID, SurNameFirstName from #PEAP_SelectEmployeesByAppraiser_All
GeneralRe: Converted sql Query to Oracle Pin
Vimalsoft(Pty) Ltd16-Jul-09 21:29
professionalVimalsoft(Pty) Ltd16-Jul-09 21:29 
GeneralRe: Converted sql Query to Oracle Pin
sandhya1416-Jul-09 23:22
sandhya1416-Jul-09 23:22 
GeneralRe: Converted sql Query to Oracle Pin
Vimalsoft(Pty) Ltd16-Jul-09 23:33
professionalVimalsoft(Pty) Ltd16-Jul-09 23:33 
QuestionTrace MS SQL Server Table Changes Pin
gehbitte15-Jul-09 1:33
gehbitte15-Jul-09 1:33 
AnswerRe: Trace MS SQL Server Table Changes Pin
ScottM115-Jul-09 2:54
ScottM115-Jul-09 2:54 
GeneralRe: Trace MS SQL Server Table Changes Pin
gehbitte15-Jul-09 3:26
gehbitte15-Jul-09 3:26 
GeneralRe: Trace MS SQL Server Table Changes Pin
ScottM115-Jul-09 3:32
ScottM115-Jul-09 3:32 
GeneralRe: Trace MS SQL Server Table Changes Pin
gehbitte15-Jul-09 23:20
gehbitte15-Jul-09 23:20 
GeneralRe: Trace MS SQL Server Table Changes Pin
ScottM115-Jul-09 23:33
ScottM115-Jul-09 23:33 
GeneralRe: Trace MS SQL Server Table Changes Pin
gehbitte16-Jul-09 1:40
gehbitte16-Jul-09 1:40 
GeneralRe: Trace MS SQL Server Table Changes Pin
ScottM116-Jul-09 2:29
ScottM116-Jul-09 2:29 
GeneralRe: Trace MS SQL Server Table Changes Pin
gehbitte16-Jul-09 2:47
gehbitte16-Jul-09 2:47 
QuestionSQL Between Pin
Socheat.Net15-Jul-09 0:58
Socheat.Net15-Jul-09 0:58 
AnswerRe: SQL Between Pin
Ashfield15-Jul-09 1:19
Ashfield15-Jul-09 1:19 
AnswerRe: SQL Between Pin
Niladri_Biswas16-Jul-09 18:13
Niladri_Biswas16-Jul-09 18:13 
QuestionEXECUTING VB.NET DLL Pin
ps_prakash0215-Jul-09 0:08
ps_prakash0215-Jul-09 0:08 
AnswerRe: EXECUTING VB.NET DLL Pin
Manas Bhardwaj17-Jul-09 4:47
professionalManas Bhardwaj17-Jul-09 4:47 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.