I have to store a video into an Oracle database. I just would like to know what are the possible ways to do it and if there are any references I can get based on? Unfortunately, there is not much information about such practice.
I am not sure if the right way is to use SQL loader to load the video from a file.
Related
Is it possible to compare data from an Oracle DB and an Azure SQL DB. The data should be the same in each but I want to find out is there a way to check and confirm this?
I'm thinking maybe a Java application that could check and compare the same row of each application, or check totals/counts. Or is there a more straight forward way? Any advice appreciated.
Maybe you should give us more info about the story of the database.
Have you created an Azure SQL Database from an Oracle DB or the other way around?
My approach would be:
Use SSMA to translate the Oracle database to a SQL Server database.
Now use any compare database you find online (there are many) and compare the two.
If you tell me more about the story of the database I can understand better.
I have a properly functioning up to date 10g database locally that I don't want to mess with. I need to do some queries on a customer's database locally which is a couple versions behind from our current software. I had exported their full db using expdp. The user is the same, and the structure is pretty much the same. What is the proper way of having both databases loaded at the same time?
If I have worded this funny, or am going about this in the wrong way, please let me know! Thanks!
Edit:
There is one main user, and another user for each component/application within the main app.
Use Import Data Pump (impdp) with the "remap schema" option to load the exported schema into another schema in your existing database:
http://www.database.fi/2011/05/using-expdp-impdp-and-changing-schemas-with-remap_schema/
I am developing an ASP.net application with Access database. I need to convert this Access database to Oracle. How can I do that?
I saw two options
Migrating the access database to Oracle through MIGRATION WIZARD in SQL developer
In Oracle, just creating a new connection with existing MS Access database and then converting to oracle.
Kindly let me know the best solution for this
thanks in advance,
Arjun
The two choices you proffer could be rewritten like this:
Use an automated tool written by experts
Do it the hard way and figure it out for myself
This is a personal, even philosophical, choice. Do you need to get the task done quickly? Or do you want to learn something along the way?
TRY IT and then tell us.
My experience integrating all things oracle with all things microsoft has always been complicated, and a lot of manual intervention was required.
It also depends on the complexity of your existing access database, if it's only one table, then you can grab that table sql, correct it for nvarchar -> varchar2 fields and datapump the data into oracle.
If Access has 1000+ tables I would suggest getting a professional to do it. Any reasonable dba should handle it no problem.
Please check the solution at Insert into from ms access to oracle db
You can customize the code based on your requirement. You can bundle the whole code into one class and prepare it as exe application.
I want to update my app to use the new SQL DB that was added in Mango. I have several collections currently stored in Isolated Storage. I would love to be able to some how convert those into tables so I can then do some sort of back up and restore process (ultimate goal).
I was just wondering if there was any tool that did this conversion process. If not, is there a tutorial that is out there that steps through this process?
If anyone has any other suggestions, I'd be game to hear them.
There is no tool to do this in an automated fashion. Since there are no structural constraints in how you save your data you have to write your own code to read and write the persisted collection. Likewise you have to write your own code to prepare this data to be inserted into the database. If you provide more info on you file and DB structure we can give more specifics on what to do.
I am creating an app for webOS in enyo. I have an sqllite database running in the browser properly but how i can find the path of this database?
And how can i retrieve this database?
Is it possible to get whole DB file?
That is very new so I can't get the solution for it.
Any suggestion or help will solve my problem.
There is a really good Enyo SQL lite wrapper class that has been developed from the Mojo version by OneCrayon...
https://github.com/onecrayon/database-webos
this is really all you will need, if you read through the code there are some very good notes on how to use it!
Its not really clear what you're attempting to do.
If you use the webSQL interface to generate a db, you can use that same interface to access it.
You cannot really access the sqllite file directly, and its not clear why you would want to.
Or are you saying you already have an sqllite database from some other source and want to be able to open it up in your application via the websql interface? Thats not currently possible.