Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
0% Quality Score
Upvotes Received
0
Posts with Upvotes
0
Upvoting Members
0
Downvotes Received
1
Posts with Downvotes
1
Downvoting Members
1
0 Endorsements
~3K People Reached
This member's community profile is only visible to logged in members until they have earned 15 reputation points.

12 Posted Topics

Member Avatar for yash_792

Hi I have written a procedure in PL/SQL to get values from user and then I am updating the same in a table. This worked fine 1st time but its just not showing the new values inserted by the user. The field which should be updated with the user value …

Member Avatar for mcglk
-1
234
Member Avatar for Tank50

[QUOTE=;][/QUOTE] if you are able to create a temporary table of your 5000 records then you can either join these tables or you can pass these values into a sub-query for e.g. select * from amount_paiad where cust_id in (select temp_field_name from temp_table) Hope this is helpfull

Member Avatar for Prateek nandan
0
519
Member Avatar for RvSon

[QUOTE=ravi sonaiya;1634856]hello everyone... could anyone tell me how to store images in oracle database..or which datatype has to use for it..[/QUOTE] Hi you can store images in oracle by using datatype as Bfile. it has a capacity of 4 gb of filesize. Bfile stores Binary data of external file upto …

Member Avatar for saideepak89
0
148
Member Avatar for yash_792

Hi, I am working on a report where I need to split the rows and update put it on a different column. For e.g. Policy No DriverName 123 John 123 David 124 Matt 125 Phil 125 Peter I need to split the data as per the policy number and instead …

Member Avatar for NeverLift
0
72
Member Avatar for peanutz

Hi, Try this query, it should give you the desired result. select col1,col2,max(col3) from table_1 group by col1,col2 [QUOTE=peanutz;1268355]I need a query that will find for example in the given table Distinct Col1, with highest Col3 [CODE]A X 1 A Y 2 A X 3 B Y 2 B Z …

Member Avatar for Member #789783
0
134
Member Avatar for johnsign11

Post 2 is quite a sufficient reply. it'll help you add constraint to the column

Member Avatar for yash_792
0
148
Member Avatar for kartheeee

Hi try this... select leaveno,fromdt,todt from leavetb where fromdt >= to_date('01-Apr-2010') and todt <= to_date('30-Apr-2010');

Member Avatar for NeverLift
0
140
Member Avatar for ajotikaramrita

You need to be logged as sysdba only then you'll have sufficient previledges to create a desired tablespace...

Member Avatar for sudhanshoo
0
206
Member Avatar for axas

Hi below query might help you acheive your desired results... select code,max(ptime),min(ptime) from dailyatt group by code; [QUOTE=axas;1306828]Hi i am new in oracle. i am having a problem. i need to collect datewise max time and min time from my table "dailyAtt" here is the data formate in my table.. …

Member Avatar for tesuji
0
145
Member Avatar for Allophyl

Oracle is just not about programming language. you need to decide what you want to learn in Oracle. There are primarily two parts development and adminstration. For development you need to know SQL and PL/SQL wherease for admistration. SQL is lot simpler than any other programming language. For administration you …

Member Avatar for yash_792
0
163
Member Avatar for gsingh2011
Member Avatar for zachabesh
0
1K
Member Avatar for yash_792

Hey Guys, I am Yashodhan from India. I am Oracle Certified Professional :cool: . Name :- Yashodhan Nickname :- Yash Height :- 5 feets 7 inches Weight :- 60kg My hobbies are traveling, reading and chatting. Yash

Member Avatar for happygeek
0
32

The End.