15,794,374 members
Sign in
Sign in
Email
Password
Forgot your password?
Sign in with
home
articles
Browse Topics
>
Latest Articles
Top Articles
Posting/Update Guidelines
Article Help Forum
Submit an article or tip
Import GitHub Project
Import your Blog
quick answers
Q&A
Ask a Question
View Unanswered Questions
View All Questions
View C# questions
View C++ questions
View Javascript questions
View Python questions
View PHP questions
discussions
forums
CodeProject.AI Server
All Message Boards...
Application Lifecycle
>
Running a Business
Sales / Marketing
Collaboration / Beta Testing
Work Issues
Design and Architecture
Artificial Intelligence
ASP.NET
JavaScript
Internet of Things
C / C++ / MFC
>
ATL / WTL / STL
Managed C++/CLI
C#
Free Tools
Objective-C and Swift
Database
Hardware & Devices
>
System Admin
Hosting and Servers
Java
Linux Programming
Python
.NET (Core and Framework)
Android
iOS
Mobile
WPF
Visual Basic
Web Development
Site Bugs / Suggestions
Spam and Abuse Watch
features
features
Competitions
News
The Insider Newsletter
The Daily Build Newsletter
Newsletter archive
Surveys
CodeProject Stuff
community
lounge
Who's Who
Most Valuable Professionals
The Lounge
The CodeProject Blog
Where I Am: Member Photos
The Insider News
The Weird & The Wonderful
help
?
What is 'CodeProject'?
General FAQ
Ask a Question
Bugs and Suggestions
Article Help Forum
About Us
Search within:
Articles
Quick Answers
Messages
Comments by samulcristina (Top 3 by date)
samulcristina
4-Mar-14 2:03am
View
thanks Andy,i understood the solution and have to put intermediate commits while calling objects to free the memory.as per me i need to use OCICacheFree() function to release memory after complete the session.
could you please give me an example how to use the above function in the package.
thanks in advance!!!!
samulcristina
6-Mar-13 3:46am
View
Deleted
SELECT B.BANK_NAME,BL.LOC_CITY FROM BANKNAME B
INNER JOIN LOCA_BANK L ON L.BANK_ID=B.BANK_ID
INNER JOIN BANK_LOCATION BL ON BL.LOC_ID=L.LOCATION_ID
this query giving output all bank names with all branches.
but i need to fetch which bank having all locations.
samulcristina
6-Mar-13 0:39am
View
i have tried all questions above mentioned but 5th question i written like
SELECT a.bank_name, b.location_city
FROM bank a,
location b,
(SELECT *
FROM ( SELECT bank_id, COUNT (location_id) location_count
FROM bank_location
GROUP BY bank_id
ORDER BY location_count DESC)
WHERE ROWNUM <=1) c
WHERE a.bank_id = c.bank_id;
--but my sir saying output is correct but query is wrong .
plese help to complete this.