InnoDB Storage Engine Dropped From Oracle MySQL Classic Edition? [closed] - sql

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 10 years ago.
InnoDB Storage Engine Dropped From Oracle MySQL Classic Edition? What does this mean for the average developer who uses mysql or shall we start looking for alternatives?
http://digitizor.com/2010/11/05/innodb-dropped-from-oracle-mysql-classic-edition/
Thanks in advance ;-)
Just trying to understand what this really means?

People that you refer to use Community Edition. And nothing is changing about it.
About Classic Edition:
MySQL Classic Edition is only available to ISVs, OEMs and VARs to license as an embedded database.
I doubt that you used it.

Classic Edition is a build of MySQL that is embeddable into applications, rather than a stand-alone server application. It has never included the InnoDB storage engine.
Community Edition is the version of MySQL I would assume most people care about/are using/it's the open source version. It still includes InnoDB.

The classic addition is listed as appropriate for embedded applications, and it's meant to be as small as possible. The cost listed there is if you want the support subscription, and they do not offer support for the classic edition.

Related

Linking iOS application to database [closed]

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 10 years ago.
Needed some advice as i am writing my first iOS application,
1. what is the best way(simplest) to link an app to a database and does the database have to be SQLite (the databse will be external ie. linked via the internet)? i have used mySQL before in MAMP,
I have read up on other post and they suggest complicated methods like via JSON etc, please provide a simple way and a book/guide/web site that could teach me your suggested method would be much appreciated too :)
SQLite is one of them.
However if your requirement is to share the database, you can go with mySQL or even Oracle etc.
JSON, xml are the tools that will help you to make a client server application.
Useful link:
http://jainmarket.blogspot.in/2009/05/iphone-sdk-tutorial-reading-data-from.html
SQLite is generally used for a local database (aka, on the device itself) through CoreData. But it seems like you have a remote MySQL database you want to connect to.
You should build some API that your iOS app talks to to get data from a database. Typically this is done over http which generates JSON in whatever server language of your choice (eg - python, ruby, php, etc).
For the iOS side, you'll probably use Apple's builtin features: NSURLConnection and NSJSONSerialization.

Can I access my Oracle DataBase From Home? [closed]

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 10 years ago.
I wanted to access my Oracle DataBase at home so that I could work weekends, etc. I talked to my database administrator and all he had to do was add my home IP to his records, and I was allowed access.
The OTN download license allows us to install the full suite of Oracle software, providing it is for the purposes of self-education.
So really it depends on what you mean by "play around with queries from home". If you're doing work you need a database licence; if you're teaching yourself about Oracle you don't.
The bigger issue is data security: the chances are you're not allowed to have the data on a laptop. Follow the news to understand why this is a bad idea. If you want to teach yourself Oracle there are lots of publicly available data sets we can download from the internet.
You can use exp or data pump export(10g onward) utility to unload data and metadata of your schema (user) into an OS file (dump file), bring it home and use imp or data pump import (10g onward) utility to import those unloaded previously data to a new schema.
If the database is small you can also use Oracle SQL Developer to export the scripts for the schema and the Insert statements for the data.
This is also possible in third-party tools such as TOAD.

The benefits of switching access BackEnd to sql express [closed]

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 10 years ago.
I have an access DB, which is split into a Backend and Frontend, that has c.a 100000 records in 60 tables.
I have this idea, that I can switch my Backend to a MSSQL Server Express.
I would like to know if it is worth the effort to attempt this idea. And which advantage do I have if my Backend is SQL Express and Front End access.
Thank you for your ideas
Definitely worth swapping to a version of SQL Server or MySQL. It can take a while to get the hang of once you have migrated from Access but using MS Sql Server will allow you to import tables easily and you'll have a more future proof application. Worked well for us
It depends on how many users are concurrently using your database and if your backend is located on a LAN or is a local database.
The number of records (100000) are not so much for Access to handle.
If your database is on a LAN location or if you have concurrent users, you should get some advantages moving to SqlServer, but some plumbing and rechecking of your code will be required.
Remember, Access is fast and easy to build application with, but, at its core, is a personal database adapted to work for low concurrency situations. Sometime (and I tend to blame the programmer instead of Access itself) it is not suitable for concurrency use. If your application is critical then, as with every database solution, a good disaster recovery plan and quick maintenance intervention time are mandatory.

How do I connect to a sql database through sql developer? [closed]

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 11 years ago.
So, I have a .sql file that I have downloaded and was wondering how I connect to it via sql developer which I have also downloaded. Do I need to create a connection with hostname and port etc? can I just connect to a file manually/directly or something?
Also, can anyone recommend a good database to practice/learn on for a beginner? Should I just download oracle 11g and play around with that?
Thanks.
You cannot connect to a .sql file because it is not a database. Oracle runs as a server in its own right. If you do not already have access to a server then you will need to get one.
Fortunately, Oracle publishes a server you can use free of charge that will help get you into the swing of things. Have a look at Oracle Lite
I think you might find it quite a challenge getting yourself set up with a development environment but if you are patient and determined you can get there. Once you have a server to play with you can start to experiment with Sql, which is the language you use to interrogate the database.
Best of luck.
You'll need the SID as well as the ip address and port number (typically 1521) that tns listener is listening on.
Once you've connected, you'll be able to run your sql file against that database.
And yes, it would be a good idea to have a good understanding of Oracle before wandering off blindly into the world of database access (.sql files, for example)

What is the Difference between SQL and SQL*Plus? [closed]

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 9 years ago.
What is the Difference between SQL and SQL*Plus?
SQL* Plus is a command line tool proprietary to Oracle. You can send SQL queries to the server using the tool. It can also help you format the result of a query.
You should get a good head start on SQL*Plus here http://www.comp.nus.edu.sg/~ooibc/courses/sql/sqlplus.htm
SQL is the query language that is used to communicate with Oracle server to access and modify the data.
cheers
SQL is a language, SQL*Plus is a tool.
SQL*Plus is an Oracle product that you use to run SQL and PL/SQL statements.
SQLPlus, the primary interface to the Oracle Database server, provides a powerful yet easy-to-use environment for querying, defining, and controlling data. SQLPlus delivers a full implementation of Oracle SQL and PL/SQL, along with a rich set of extensions. The exceptional scalability of the Oracle Database, coupled with the object-relational technology of SQL*Plus, allows you to develop your complex datatypes and objects using Oracle's integrated systems solution.
From Oracle.com (http://www.oracle.com/technology/tech/sql_plus/index.html)
sql*plus is a character based interactive tool,rhat runs in a GUI invironment. It is loaded on the client machine .