Can someone help me with this issue.
I am able to upload a csv file in the dev database. And then I connected to test database, tried to upload the same csv file into a newly created table but it is not happening.
The steps I have followed are :
i) Right click on table and selected the csv file(data is showing in preview)
ii) When I click on next, it was hanging. I am not able to select the type of insert and it is not going to back step also
What may be the issue?
Related
I am trying to extract a data dictonary from the sql developer.I made sure that i was connect to the database and i am able to write queries and get output. Then i go to generate a db doc it shows successfull and then when i go to the folder and open index.html it says file not found when i try to check the table.
There's a bug with the DB Doc feature where the index page is generated but none of the individual pages are being generated. This is fixed for our next update.
I am using Oracle APEX to provide a CSV File Upload function for our users, based on a data load definition. Apart from traditionally mapping the data, I also grabbed the BLOB column from the view wwv_flow_files and saved it to another table, so the users were always able to re-download their uploaded files at a later moment.
Now our testing environment got upgraded to APEX 5.1 and this option doesn't work anymore. There is no entry in the view wwv_flow_files for the corresponding file upload. The view apex_application_files doesn't contain one either. The application compatibility mode setting didn't help.
Is there any other way to grab the BLOB?
The APEX version installed is 5.1.2.00.09. The Oracle Database Version is 12.1.0.2.0 Enterprise Edition.
Since APEX 5.0, the file upload capability was changed from using the WWV_FLOW_FILES table to APEX_APPLICATION_TEMP_FILES. The new table has an additional attribute "Purge at", with values of "End of request" and "End of session". So developers do not have to care about cleaning up the WWV_FLOW_FILES table any more.
Data Loading, however, did not use that new capability in APEX 5.0, it moved there with APEX 5.1. That explains, why you don't see the files in the WWV_FLOW_FILES table any more.
The best way to get a hold on the uploaded file is to place a custom PL/SQL process - "copy_blob" on your "Data Load Source" Page, before the "Parse Uploaded Data" process. The Code in that process copies the BLOB from APEX_APPLICATION_TEMP_FILES(!) to your own table.
I am working on exporting a table from one parse account to another. Importing the table was successful. When I tried opening image from parse dashboard (One Which imported the table) it says access denied (Screenshot Attached).
On importing, Parse will change the unique id of the File url to your new app, this is why the images are not working. Unfortunately, there is no way to solve this at the moment.
The Parse team is working on a clone feature that moves all your records along with the file data. This is still under development.
I've been trying to duplicate Odoo's datebase in order to create a production database and a testing one. How can I do this? Once this is ready, how do I know which database I am working at?
You can do database related operation like create new , duplicate , drop, backup database or restore database from odoo ui it self.
http://server_address:port/web/database/manager
Here you will get all the option to manage database from ui.
just click on database manager just below the password field of login page then you can see Menu Named 'DUPLICATE' just click on that then there are two fields write there the source database name and new(Duplicated) Database and then click on Duplicate button on header. It duplicates DB in Seconds
Site move error:
1) We moved the entire site (zip format) and extracted on server.
2) Created the database instance
3) Updated the database urls in config table and local.xml updated with new details.
When I check in browser, it executes site correctly but templates settings and sliders images tables are deleted and recreated with default entries, because "sql" folder has commands like :
DROP TABLE IF EXISTS {$this->getTable('mtslideshow_slide')};
CREATE TABLE {$this->getTable('mtslideshow_slide')}
DROP TABLE IF EXISTS {$this->getTable('mtslideshow_category')};
CREATE TABLE {$this->getTable('mtslideshow_category')}
Same for some content pages also footer etc are roll backed to default.
How to deal with this issue?
Here I'm facing this issue: http://demo.aarnasystems.net/magento/lacxodemo/index.php/
Logo slider, Amasty filter settings, footer design changes are rolled back.
Please let me know, how to avoid to reinitializing the modules on database connection.
Thanks,
Kiran
But you did copy the entire database to a new server? Because if in core_resource table there would be entry for mtslideshow extension with the same version that it had on the last server, then sql shouldn't be run again.