Here I provide you an excellent PDF tutorial to learn MONGODB easily. I am studying this PDF and get a lot of idea and learn many things from this PDF. DOWNLOAD PDF
Muhammad Abdul Qaium is a Database Engineer/Oracle Apex Developer/BI Developer (in Atlanta, USA) who is an Oracle Certified Cloud Architect Professional, OCI Autonomous DB specialist as well as Oracle Business Intelligence Foundation Suite 11g Certified Implementation Specialist with extensive expertise in Database design , PL/SQL, Oracle Apex, Microsoft SSIS, ETL, Power BI, Qlik Sense, OBIEE. Contact: qaiuminfo@gmail.com
Search This Blog
Sunday, October 8, 2017
MongoDB Tutorial PDF (Know about MongoDB)
Here I provide you an excellent PDF tutorial to learn MONGODB easily. I am studying this PDF and get a lot of idea and learn many things from this PDF. DOWNLOAD PDF
Tuesday, October 3, 2017
Upload an Excel file into an Apex Collection Using Plugins
First download the Plugins and install to your APEX environment. Link is here DOWNLOAD (insert "demo" as username and password).
1. Create a page and a Region for uploading Excel file with a FILE BROWSE item and a button for UPLOAD. Choose SQL insert action as Database Action.
2. Create a another Region for showing uploaded excel report as CLASSIC REPORT. The SQL will be like : Select * from apex_collections ;
3. Now create a PROCESS for the taking the PLUGIN as type Excel2Collection(Plugin). Then provide file browse item name in BROWSE FILE give a name for COLLECTION NAME .
if you want to insert the excel data into database. Then make a database table according to all column of the excel.
Then use query like this :
BEGIN
INSERT INTO DATABASE_TABLE_NAME
(NAME OF ALL COLUMN )
(SELECT C001,
C002,
C003,
C004
ALL COLLECTION TABLE'S COLUMN NAME WHAT EVER YOU WANT TO INSERT
FROM apex_collections
WHERE COLLECTION_NAME = 'use the collection name what you provide at the time of calling Plugin'
AND SEQ_ID > 1(more then 1 because row number 1 will be the column name));
END;
Subscribe to:
Posts (Atom)
PDF to Text Covert by Oracle Apex
Here are the steps to convert and get the character into a region by Oracle Apex. Step1. Create a page and Copy-Pest the below code into Pa...
-
Search by keyword from Oracle Database Objects. select owner, type, name, line, text from dba_source where 1 = 1 and text like '%TEXT Y...
-
We Can Export Application Components individually from Oracle Apex. Application > Shared Components > Export Application Compo...