- Download Sql Developer Client For Mac 64-bit
- Oracle Sql Developer Download 64
- Sql Server For Mac Download
- Oracle Sql Developer Download Mac
Run SQL.Plus and connect using your database credentials and connection string: sqlplus hr/welcome@localhost/orclpdb. Installing Instant Client 11.2 on macOS. Instant Client 11.2 supports macOS X Lion, Mountain Lion and Mavericks. Download the desired Instant Client ZIP files. All installations require the Basic or Basic Light package. PostgreSQL is an absurdly powerful database, but there's no reason why using it should require an advanced degree in relational theory. Postico provides an easy to use interface, making Postgres more accessible for newcomers and specialists alike. Oracle SQL Developer. SQL Developer by Oracle is one of the most traditional database tools to.
Here I'll show you how to get SQL Server up and running on your Mac in less than half an hour. And the best part is, you'll have SQL Server running locally without needing any virtualization software.
Prior to SQL Server 2017, if you wanted to run SQL Server on your Mac, you first had to create a virtual machine (using VirtualBox, Parallels Desktop, VMware Fusion, or Bootcamp), then install Windows onto that VM, then finally SQL Server. This is still a valid option depending on your requirements (here's how to install SQL Server on a Mac with VirtualBox if you'd like to try that method).
Starting with SQL Server 2017, you can now install SQL Server directly on to a Linux machine. And because macOS is Unix based (and Linux is Unix based), you can run SQL Server for Linux on your Mac. The way to do this is to run SQL Server on Docker.
So let's go ahead and install Docker. Then we'll download and install SQL Server.
Install Docker
Download the (free) Docker Community Edition for Mac (unless you've already got it installed on your system). This will enable you to run SQL Server from within a Docker container.
To download, visit the Docker CE for Mac download page and click Get Docker.
To install, double-click on the .dmg file and then drag the Docker.app icon to your Application folder.
What is Docker?
Docker is a platform that enables software to run in its own isolated environment. SQL Server (from 2017) can be run on Docker in its own isolated container. Once Docker is installed, you simply download — or 'pull' — the SQL Server on Linux Docker Image to your Mac, then run it as a Docker container. This container is an isolated environment that contains everything SQL Server needs to run.
Launch Docker
Launch Docker the same way you'd launch any other application (eg, via the Applications folder, the Launchpad, etc).
When you open Docker, you might be prompted for your password so that Docker can install its networking components and links to the Docker apps. Go ahead and provide your password, as Docker needs this to run.
Increase the Memory
By default, Docker will have 2GB of memory allocated to it. SQL Server needs at least 3.25GB. To be safe, increase it to 4GB if you can.
To do this:
- Select Preferences from the little Docker icon in the top menu
- Slide the memory slider up to at least 4GB
- Click Apply & Restart
Download SQL Server
Now that Docker is installed and its memory has been increased, we can download and install SQL Server for Linux.
Open a Terminal window and run the following command.
This downloads the latest SQL Server 2019 for Linux Docker image to your computer.
You can also check for the latest container version on the Docker website if you wish.
Update: When I first wrote this article, I used the following image:
Which downloaded SQL Server 2017. Therefore, the examples below reflect that version.
Launch the Docker Image
Run the following command to launch an instance of the Docker image you just downloaded:
But of course, use your own name and password. Also, if you downloaded a different Docker image, replace
microsoft/mssql-server-linux
with the one you downloaded.Here's an explanation of the parameters:
-d
- This optional parameter launches the Docker container in daemon mode. This means that it runs in the background and doesn't need its own Terminal window open. You can omit this parameter to have the container run in its own Terminal window.
--name sql_server_demo
- Another optional parameter. This parameter allows you to name the container. This can be handy when stopping and starting your container from the Terminal.
-e 'ACCEPT_EULA=Y'
- The
Y
shows that you agree with the EULA (End User Licence Agreement). This is required in order to have SQL Server for Linux run on your Mac. -e 'SA_PASSWORD=reallyStrongPwd123'
- Required parameter that sets the
sa
database password. -p 1433:1433
- This maps the local port 1433 to port 1433 on the container. This is the default TCP port that SQL Server uses to listen for connections.
microsoft/mssql-server-linux
- This tells Docker which image to use. If you downloaded a different one, use it instead.
Password Strength
If you get the following error at this step, try again, but with a stronger password.
I received this error when using
reallyStrongPwd
as the password (but of course, it's not a really strong password!). I was able to overcome this by adding some numbers to the end. However, if it wasn't just a demo I'd definitely make it stronger than a few dictionary words and numbers.Check the Docker container (optional)
You can type the following command to check that the Docker container is running.
https://neglingpagod1977.mystrikingly.com/blog/add-a-blog-post-title-7772ef05-4a16-4c3d-a9bc-addaf8cadeb5. Steinberg Cubase. Cubase 7.5 / Cubase Artist 7.5 Full Installer 6.8 GB If needed, please find the latest update for the plug-in Grooove Agent SE 4 (included in Cubase 7.5 / Cubase Artist 7.5) here. Version history: Known issues and solutions Page 4 Steinberg Media Technologies GmbH Cubase 7.5.40 February 2015 This version contains all improvements from previous maintenance releases as well as the following improvements and issue resolutions. Improvements This maintenance update introduces the following improvements: MediaBay. Download the Cubase 7.5 Mac or PC installer by clicking on the corresponding button to the left. Start the Cubase installation by double-clicking on the downloaded file.
If it's up and running, it should return something like this:
Install sql-cli (unless already installed)
Run the following command to install the sql-cli command line tool. This tool allows you to run queries and other commands against your SQL Server instance.
This assumes you have NodeJs installed. If you don't, download it from Nodejs.org first. Installing NodeJs will automatically install npm which is what we use in this command to install sql-cli.
Permissions Error?
If you get an error, and part of it reads something like
Please try running this command again as root/Administrator
, try again, but this time prependsudo
to your command:Connect to SQL Server
Now that sql-cli is installed, we can start working with SQL Server via the Terminal window on our Mac.
Connect to SQL Server using the
mssql
command, followed by the username and password parameters.You should see something like this:
This means you've successfully connected to your instance of SQL Server.
Run a Quick Test
Run a quick test to check that SQL Server is up and running and you can query it.
For example, you can run the following command to see which version of SQL Server your running:
If it's running, you should see something like this (but of course, this will depend on which version you're running):
If you see a message like this, congratulations — SQL Server is now up and running on your Mac!
A SQL Server GUI for your Mac – Azure Data Studio
Azure Data Studio (formerly SQL Operations Studio) is a free GUI management tool that you can use to manage SQL Server on your Mac. You can use it to create and manage databases, write queries, backup and restore databases, and more.
Azure Data Studio is available on Windows, Mac and Linux.
Here are some articles/tutorials I've written for Azure Data Studio:
Another Free SQL Server GUI – DBeaver
Another SQL Server GUI tool that you can use on your Mac (and Windows/Linux/Solaris) is DBeaver.
DBeaver is a free, open source database management tool that can be used on most database management systems (such as MySQL, PostgreSQL, MariaDB, SQLite, Oracle, DB2, SQL Server, Sybase, Microsoft Access, Teradata, Firebird, Derby, and more).
I wrote a little introduction to DBeaver, or you can go straight to the DBeaver download page and try it out with your new SQL Server installation.
Limitations of SQL Server for Linux/Mac
SQL Server 2017 for Linux does have some limitations (at least, in its initial release). The Linux release doesn't include many of the extra services that are available in the Windows release, such as Analysis Services, Reporting Services, etc. Here's a list of what's available and what's not on SQL Server 2017 for Linux.
Another limitation is that SQL Server Management Studio is not available on Mac or Linux. SSMS a full-blown GUI management for SQL Server, and it provides many more features than Azure Data Studio and DBeaver (at least at the time of writing). You can still use SSMS on a Windows machine to connect to SQL Server on a Linux or Mac machine, but you just can't install it locally on the Linux or Mac machine.
If you need any of the features not supported in SQL Server for Linux, you'll need SQL Server for Windows. However, you can still run SQL Server for Windows on your Mac by using virtualization software. Here's how to install SQL Server for Windows on a Mac using VirtualBox.
The script content on this page is for navigation purposes only and does not alter the content in any way.
Note:
This guide assumes that you plan to download the SQL Developer kit (.zip) file and install it as a freestanding tool.If you plan to SQL Developer as part of the Oracle Database release 11 installation, see the Oracle Database installation documentation.
Please read the information in this chapter before you install Oracle SQL Developer. This chapter contains the following major sections:
1.1 SQL Developer System Recommendations
This section describes the recommended minimum values for CPU, memory, display, disk storage, and other resources on the supported systems.
Table 1-1 Recommendations for Windows Systems
Resource | Recommended Minimum Value |
---|---|
Operating System | Windows 2000-Service Pack 4 Windows XP-Service Pack 2 Windows 2003 R2 Nanny mania 2 mac free download. Nanny Mania 2 for Mac. Free to try Macgamestore Mac OS X 10.4 Intel/PPC. Download.com has chosen not to provide a direct-download link for this product and offers this page for informational. Free download Nanny Mania 2 Nanny Mania 2 for Mac OS X. Nanny Mania 2 - Everyone's favorite Nanny is back for an all-new adventure of fast-paced fun in Nanny Mania 2 for Mac! |
CPU Type and Speed | Pentium IV 2 GHz MHz or faster |
Memory | 1 GB RAM |
Display | 65536 colors, set to at least 1024 X 768 resolution |
Hard Drive Space | 42 MB if you already have JDK 1.5 110 MB if you do not have JDK 1.5 |
Java SDK | JDK 5.0 Update 6 or later for Windows, available at: |
Table 1-2 Recommendations for Linux Systems
Resource | Recommended Minimum Value |
---|---|
Operating System | Red Hat Enterprise Linux 3.0 Fedora Core 4 |
CPU Type and Speed | Pentium IV 2 GHz or faster |
Memory | 1 GB RAM |
Display | 65536 colors, set to at least 1024 X 768 resolution |
Hard Drive Space | 110 MB |
Java SDK | JDK 5.0 Update 6 or later for Linux, available at: |
Table 1-3 Recommendations for Mac OS X Systems
Resource | Recommended Minimum Value |
---|---|
Operating System | Apple Mac OS X Version 10.4.x |
CPU Type and Speed | Dual 1.25 GHz G4/G5 (1 GHz G4 minimum) |
Memory | 1.5 GB RAM (1 GB minimum) |
Display | 'Thousands' of colors |
Hard Drive Space | 110 MB |
Java SDK | Sun J2SE 1.5 release 1, available at: |
1.2 Installing and Starting SQL Developer
This section contains subsections with instructions for installing SQL Developer on all supported systems.
SQL Developer does not require an installer. To install SQL Developer, you will need an unzip tool. You can download a free, cross-platform unzip tool, Info-Zip, available at http://www.info-zip.org/
.
Important:
Do not install SQL Developer into any existingORACLE_HOME
. You will not be able to uninstall it using Oracle Universal Installer.Important:
If you are using a pre-release (Early Adopter) version of SQL Developer, and if you want to be able to continue to use this pre-release version after installing the official release kit, you must unzip the official release kit into a different directory than the one used for the pre-release version.For Windows systems, there are two kits: one for systems on which the Sun Java SDK release 1.5 is installed, and another for systems with no Java SDK or a Sun Java SDK release lower than 1.5. Be sure to download the appropriate kit.
Before you install SQL Developer, look at the remaining sections of this guide to see if you need to know or do anything else first.
The steps for installing SQL Developer depend on whether or not you will be using it on a Windows system that does not have the Sun Java SDK release 1.5 installed:
For a Windows system with the Sun Java release 1.5 installed, follow the instructions in Section 1.2.1.
For all other systems (Linux and Mac OS X systems, and Windows systems with no Java SDK or a Sun Java SDK release lower than 1.5 installed), follow the instructions in Section 1.2.2.
1.2.1 Windows Systems with JDK1.5
To install and start SQL Developer on a Windows system on which the Sun Java SDK release 1.5 is installed, follow these steps:
Unzip the SQL Developer kit into a folder (directory) of your choice (for example,
C:Program Files
). This folder will be referred to as.
Unzipping the SQL Developer kit causes a folder named
sqldeveloper
to be created under thefolder (for example,
C:Program Filessqldeveloper
). It also causes many files and folders to be placed in and under that directory.To start SQL Developer, go to
sqldeveloper
, and double-clicksqldeveloper.exe
.
If you are asked to enter the full pathname for java.exe, click Browse and find java.exe. For example, the path might have a name similar to C:Program FilesJavajdk1.5.0_06binjava.exe
.
After SQL Developer starts, you can connect to any database by right-clicking the Connections node in the Connections Navigator and selecting New Database Connection. Alternatively, if you have any exported connections (see Section 1.4 or Section 1.10), you can import these connections and use them.
You can learn about SQL Developer by clicking Help, then Table of Contents, and reading the help topics under SQL Developer Concepts and Usage.
1.2.2 Linux and Mac OS X Systems, and Windows Systems without JDK 5.0
SQL Developer requires that the Sun Java J2SE JDK 5.0 (Update 5 or later) be installed on the system. If you need to install this JDK, go to http://java.sun.com/j2se/1.5.0/download.jsp
and click the link for downloading JDK 5.0 Update 6 (or the most recent available update).
To install and start SQL Developer, follow these steps:
Unzip the SQL Developer kit into a directory (folder) of your choice. This directory location will be referred to as
.
Unzipping the SQL Developer kit causes a directory named
sqldeveloper
to be created under thedirectory. It also causes many files and folders to be placed in and under that directory.
To start SQL Developer, go to the
sqldeveloper
directory under thedirectory, and do one of the following, as appropriate for your operating system:
On Linux and Mac OS X systems, run sh sqldeveloper.sh.
On Windows systems, double-click
sqldeveloper.exe
.
After SQL Developer starts, you can connect to any database by right-clicking the Connections node in the Connections Navigator and selecting New Database Connection. Alternatively, if you have any exported connections (see Section 1.4 or Section 1.10), you can import these connections and use them.
You can learn about SQL Developer by clicking Help, then Table of Contents, and reading the help topics under SQL Developer Concepts and Usage.
1.3 Migrating User Settings from Release 1.0
The first time you start SQL Developer after installing it or after adding any extensions, you are asked if you want to migrate your user settings from a previous release. (This occurs regardless of whether there was a previous release on your system.)
Note:
Migration of user settings is supported only from SQL Developer Release 1.0 to Release 1.1. It is not supported for migration from a pre-release version of 1.1 to Release 1.1.These settings refer to database connections, reports, and certain SQL Developer user preferences that you set in a previous version by clicking Tools and then Preferences. However, some user preferences are not saved, and you must re-specify these using the new release.
To migrate user settings from SQL Developer Release 1.0:
Unzip the Release 1.1 kit into an empty directory (folder). Do not delete or overwrite the directory into which you unzipped the Release 1.0 kit.
When you start SQL Developer Release 1.1, click Yes when asked if you want to migrate settings from a previous release.
In the dialog box that is displayed, do not accept the default location for the settings. Instead, specify the location of your Release 1.0 settings, which might be a folder whose path ends with
sqldeveloperjdevsystem
.
See also Section 1.4, 'Migrating Information from Previous Releases'.
1.4 Migrating Information from Previous Releases
If you have used a previous release of SQL Developer or a pre-release version of the current release, you may want to preserve database connections that you have been using. To preserve database connections, save your existing database connections in an XML file. To save the connections, right-click the Connections node in the Connections Navigator and select Export Connections. After you complete the installation described in this guide, you can use those connections by right-clicking the Connections node in the Connections Navigator and selecting Import Connections
If you want to use any user-defined reports or the SQL history from a previous version, see Section 1.5 for information about where these are located. If you want to use any user-defined reports or the SQL history from Release 1.0 with both Releases 1.0 and 1.1, you must save them before using Release 1.1, because Release 1.1 modifies the files to a format that is incompatible with Release 1.0.
SQL Developer preferences (specified by clicking Tools and then Preferences) from a pre-release version of the current release cannot currently be saved and reused; you must re-specify any desired preferences.
Note:
If you want to uninstall your pre-release version of SQL Developer before installing this release, see Section 1.10, 'Uninstalling SQL Developer'.1.5 Location of User-Related Information
SQL Developer stores user-related information in several places, with the specific location depending on the operating system and certain environment specifications. User-related information includes user-defined reports, user-defined snippets, SQL Worksheet history, and SQL Developer user preferences.
In most cases, your user-related information is stored outside the SQL Developer installation directory hierarchy, so that it is preserved if you delete that directory and install a new version. The exception to this is on Windows systems, where SQL Developer user preferences are stored under the installation directory. To preserve preferences on Windows systems when upgrading to a more recent version of the same SQL Developer release, but not to upgrade from Release 1.0 to 1.1, use the Check for Updates feature (click Help, then Check for Updates) to upgrade your system.
The user-related information is stored in or under the following location:
On Windows systems: the
HOME
environment variable location, if defined; otherwise theSQLDEVELOPER_USER_DIR
location, if defined; otherwise as indicated in the following tableOn Linux and Mac OS X systems: the
SQLDEVELOPER_USER_DIR
location, if defined; otherwise as indicated in the following table
The following table shows the typical default locations (under a directory or in a file) for specific types of resources on different operating systems. (Note the period in the name of any directory or folder named .sqldeveloper
.)
Table 1-4 Default Locations for User-Related Information
Resource Type | Windows Systems | Linux or Mac OS X Systems |
---|---|---|
User-defined reports | C:Documents and Settings.sqldeveloperUserReports.xml | ~/.sqldeveloper/UserReports.xml |
User-defined snippets | C:Documents and Settings.sqldeveloperUserSnippets.xml | ~/.sqldeveloper/UserSnippets.xml |
SQL history | C:Documents and Settings.sqldeveloperSqlHistory.xml | ~/.sqldeveloper/system/ |
SQL Worksheet archive filesFoot 1 | C:Documents and Settings.sqldevelopertmp | ~/.sqldeveloper/tmp/ |
SQL Developer user preferences | sqldevelopersqldevelopersystem | ~/.sqldeveloper/system/ |
Footnote 1 SQL Worksheet archive files contain SQL statements that you have entered. These files begin with sqldev and then have a random number (for example, sqldev14356.sql). If you close SQL Developer with a SQL Worksheet open that contains statements, you will be prompted to save these files.
To specify a non-default SQLDEVELOPER_USER_DIR
location, do either of the following:
Set the
SQLDEVELOPER_USER_DIR
environment variable to specify another directory path.Edit the
sqldevelopersqldeveloperbinsqldeveloper.conf
file and substitute the desired directory path forSQLDEVELOPER_USER_DIR
in the following line:
If you want to prevent other users from accessing your user-specific SQL Developer information, you must ensure that the appropriate permissions are set on the directory where that information is stored or on a directory above it in the path hierarchy. For example, on a Windows system you may want to ensure that the sqldeveloper
folder and the .sqldeveloper
folder under Documents and Settings
are not shareable; and on a Linux or Mac OS X system you may want to ensure that the ~/.sqldeveloper
directory is not world-readable.
1.6 Database Certification for SQL Developer (Oracle and Third-Party)
This section describes Oracle and non-Oracle (third-party) databases that are certified for use with SQL Developer.
Table 1-5 lists the Oracle database certifications.
Table 1-5 Oracle Database Certification for SQL Developer
1.2.1 Windows Systems with JDK1.5
To install and start SQL Developer on a Windows system on which the Sun Java SDK release 1.5 is installed, follow these steps:
Unzip the SQL Developer kit into a folder (directory) of your choice (for example,
C:Program Files
). This folder will be referred to as.
Unzipping the SQL Developer kit causes a folder named
sqldeveloper
to be created under thefolder (for example,
C:Program Filessqldeveloper
). It also causes many files and folders to be placed in and under that directory.To start SQL Developer, go to
sqldeveloper
, and double-clicksqldeveloper.exe
.
If you are asked to enter the full pathname for java.exe, click Browse and find java.exe. For example, the path might have a name similar to C:Program FilesJavajdk1.5.0_06binjava.exe
.
After SQL Developer starts, you can connect to any database by right-clicking the Connections node in the Connections Navigator and selecting New Database Connection. Alternatively, if you have any exported connections (see Section 1.4 or Section 1.10), you can import these connections and use them.
You can learn about SQL Developer by clicking Help, then Table of Contents, and reading the help topics under SQL Developer Concepts and Usage.
1.2.2 Linux and Mac OS X Systems, and Windows Systems without JDK 5.0
SQL Developer requires that the Sun Java J2SE JDK 5.0 (Update 5 or later) be installed on the system. If you need to install this JDK, go to http://java.sun.com/j2se/1.5.0/download.jsp
and click the link for downloading JDK 5.0 Update 6 (or the most recent available update).
To install and start SQL Developer, follow these steps:
Unzip the SQL Developer kit into a directory (folder) of your choice. This directory location will be referred to as
.
Unzipping the SQL Developer kit causes a directory named
sqldeveloper
to be created under thedirectory. It also causes many files and folders to be placed in and under that directory.
To start SQL Developer, go to the
sqldeveloper
directory under thedirectory, and do one of the following, as appropriate for your operating system:
On Linux and Mac OS X systems, run sh sqldeveloper.sh.
On Windows systems, double-click
sqldeveloper.exe
.
After SQL Developer starts, you can connect to any database by right-clicking the Connections node in the Connections Navigator and selecting New Database Connection. Alternatively, if you have any exported connections (see Section 1.4 or Section 1.10), you can import these connections and use them.
You can learn about SQL Developer by clicking Help, then Table of Contents, and reading the help topics under SQL Developer Concepts and Usage.
1.3 Migrating User Settings from Release 1.0
The first time you start SQL Developer after installing it or after adding any extensions, you are asked if you want to migrate your user settings from a previous release. (This occurs regardless of whether there was a previous release on your system.)
Note:
Migration of user settings is supported only from SQL Developer Release 1.0 to Release 1.1. It is not supported for migration from a pre-release version of 1.1 to Release 1.1.These settings refer to database connections, reports, and certain SQL Developer user preferences that you set in a previous version by clicking Tools and then Preferences. However, some user preferences are not saved, and you must re-specify these using the new release.
To migrate user settings from SQL Developer Release 1.0:
Unzip the Release 1.1 kit into an empty directory (folder). Do not delete or overwrite the directory into which you unzipped the Release 1.0 kit.
When you start SQL Developer Release 1.1, click Yes when asked if you want to migrate settings from a previous release.
In the dialog box that is displayed, do not accept the default location for the settings. Instead, specify the location of your Release 1.0 settings, which might be a folder whose path ends with
sqldeveloperjdevsystem
.
See also Section 1.4, 'Migrating Information from Previous Releases'.
1.4 Migrating Information from Previous Releases
If you have used a previous release of SQL Developer or a pre-release version of the current release, you may want to preserve database connections that you have been using. To preserve database connections, save your existing database connections in an XML file. To save the connections, right-click the Connections node in the Connections Navigator and select Export Connections. After you complete the installation described in this guide, you can use those connections by right-clicking the Connections node in the Connections Navigator and selecting Import Connections
If you want to use any user-defined reports or the SQL history from a previous version, see Section 1.5 for information about where these are located. If you want to use any user-defined reports or the SQL history from Release 1.0 with both Releases 1.0 and 1.1, you must save them before using Release 1.1, because Release 1.1 modifies the files to a format that is incompatible with Release 1.0.
SQL Developer preferences (specified by clicking Tools and then Preferences) from a pre-release version of the current release cannot currently be saved and reused; you must re-specify any desired preferences.
Note:
If you want to uninstall your pre-release version of SQL Developer before installing this release, see Section 1.10, 'Uninstalling SQL Developer'.1.5 Location of User-Related Information
SQL Developer stores user-related information in several places, with the specific location depending on the operating system and certain environment specifications. User-related information includes user-defined reports, user-defined snippets, SQL Worksheet history, and SQL Developer user preferences.
In most cases, your user-related information is stored outside the SQL Developer installation directory hierarchy, so that it is preserved if you delete that directory and install a new version. The exception to this is on Windows systems, where SQL Developer user preferences are stored under the installation directory. To preserve preferences on Windows systems when upgrading to a more recent version of the same SQL Developer release, but not to upgrade from Release 1.0 to 1.1, use the Check for Updates feature (click Help, then Check for Updates) to upgrade your system.
The user-related information is stored in or under the following location:
On Windows systems: the
HOME
environment variable location, if defined; otherwise theSQLDEVELOPER_USER_DIR
location, if defined; otherwise as indicated in the following tableOn Linux and Mac OS X systems: the
SQLDEVELOPER_USER_DIR
location, if defined; otherwise as indicated in the following table
The following table shows the typical default locations (under a directory or in a file) for specific types of resources on different operating systems. (Note the period in the name of any directory or folder named .sqldeveloper
.)
Table 1-4 Default Locations for User-Related Information
Resource Type | Windows Systems | Linux or Mac OS X Systems |
---|---|---|
User-defined reports | C:Documents and Settings.sqldeveloperUserReports.xml | ~/.sqldeveloper/UserReports.xml |
User-defined snippets | C:Documents and Settings.sqldeveloperUserSnippets.xml | ~/.sqldeveloper/UserSnippets.xml |
SQL history | C:Documents and Settings.sqldeveloperSqlHistory.xml | ~/.sqldeveloper/system/ |
SQL Worksheet archive filesFoot 1 | C:Documents and Settings.sqldevelopertmp | ~/.sqldeveloper/tmp/ |
SQL Developer user preferences | sqldevelopersqldevelopersystem | ~/.sqldeveloper/system/ |
Footnote 1 SQL Worksheet archive files contain SQL statements that you have entered. These files begin with sqldev and then have a random number (for example, sqldev14356.sql). If you close SQL Developer with a SQL Worksheet open that contains statements, you will be prompted to save these files.
To specify a non-default SQLDEVELOPER_USER_DIR
location, do either of the following:
Set the
SQLDEVELOPER_USER_DIR
environment variable to specify another directory path.Edit the
sqldevelopersqldeveloperbinsqldeveloper.conf
file and substitute the desired directory path forSQLDEVELOPER_USER_DIR
in the following line:
If you want to prevent other users from accessing your user-specific SQL Developer information, you must ensure that the appropriate permissions are set on the directory where that information is stored or on a directory above it in the path hierarchy. For example, on a Windows system you may want to ensure that the sqldeveloper
folder and the .sqldeveloper
folder under Documents and Settings
are not shareable; and on a Linux or Mac OS X system you may want to ensure that the ~/.sqldeveloper
directory is not world-readable.
1.6 Database Certification for SQL Developer (Oracle and Third-Party)
This section describes Oracle and non-Oracle (third-party) databases that are certified for use with SQL Developer.
Table 1-5 lists the Oracle database certifications.
Table 1-5 Oracle Database Certification for SQL Developer
Product | Releases |
---|---|
Oracle Database | Oracle9i (9.2.0.1 and later) Oracle10g |
Oracle Database Express Edition | Oracle10g |
SQL Developer can be used to view metadata and data of several non-Oracle (third-party) databases. Table 1-6 lists the third-party database certifications.
Table 1-6 Non-Oracle (Third-Party) Database Certification for SQL Developer
Database | Releases | Notes |
---|---|---|
Microsoft Access | Access 97 Access 2000 Access 2003 | For any Access release: no JDBC driver needed, but you must ensure read access to system tables in the .mdb file. |
Microsoft SQL Server | SQL Server 7 SQL Server 2000 SQL Server 2005 | For any Microsoft SQL Server release: JDBC driver jtds-1.2.jar required; included in jtds-1.1-dist.zip available from sourceforge.net. |
MySQL | MySQL 3.x MySQL 4.x MySQL 5.x | For any MySQL release: JDBC driver required. For MySQL 5.x: mysql-connector-java-5.0.4-bin.jar, which is included in mysql-connector-java-5.0.4.zip |
For information about creating and using connections to third-party databases, see the information about database connections in the SQL Developer online help or Oracle Database SQL Developer User's Guide.
1.7 Advanced Security for JDBC Connection to the Database
You are encouraged to use Oracle Advanced Security to secure a JDBC connection to the database. Both the JDBC OCI and the JDBC Thin drivers support at least some of the Oracle Advanced Security features. If you are using the OCI driver, you can set relevant parameters in the same way that you would in any Oracle client setting. The JDBC Thin driver supports the Oracle Advanced Security features through a set of Java classes included with the JDBC classes in a Java Archive (JAR) file and supports security parameter settings through Java properties objects.
For more information about using Oracle Advanced Security, see Oracle Database JDBC Developer's Guide and Reference.
1.8 Finding SQL Developer Accessibility Information
For the latest configuration information or for information on addressing accessibility and assistive technology issues, see the Oracle Accessibility FAQ at http://www.oracle.com/accessibility/faq.html
.
Also, check the SQL Developer release notes (readme.txt
file) to see if there are any currently known issues regarding accessibility.
1.9 Using a Screen Reader and Java Access Bridge with SQL Developer
To make the best use of our accessibility features, Oracle Corporation recommends the following minimum technology stack:
Windows 2000 or Windows XP
Java Sun J2SE 1.5.0_05
Sun Java Access Bridge 1.1 or higher
JAWS 3.70.87, or 5.10 or higher
Follow these steps to set up a screen reader and Java Access Bridge. If you are using JAWS 3.70.87, see the additional configuration information provided after the procedure.
Install the screen reader, if it is not already installed. (See the documentation for your screen reader for more information about installation.)
Install SQL Developer.
Download Java Access Bridge for Windows version 1.1. The file you will download is
accessbridge-1_1.zip
. It is available fromhttp://java.sun.com/products/accessbridge
. (See the Java Access Bridge documentation available from this Web site for more information about installation and the Java Access Bridge.)After downloading the file, extract (unzip) the contents to a folder, for example,
accessbridge_home
.Install Java Access Bridge by running
Install.exe
from theinstaller folder
.The installer first checks the SDK version for compatibility, then the Available Java virtual machines dialog displays.
Click Search disks. Then select to search only the drive that contains the SQL Developer build and the SDK version in the program files directory (if it exists).
The search process can take a long time on a large disk with many instances of SDK or SQL Developer, or when searching multiple disks. However, unless you complete an exhaustive search of your disk, Access Bridge will not be optimally configured, and will not be correctly installed to all of the Java VMs on your system. After selecting the disk to search, click Search.
Confirm that you want to install the Java Access Bridge into each of the Java virtual machines displayed in the dialog, by clicking Install in All.
Click OK when you see the Installation Completed message.
Confirm that the following files have been installed in the
WinntSystem32
directory (or the equivalent Windows 2000 or XP directory), or copy them frominstallerinstallerFiles
because they must be in the system path in order to work with SQL Developer:Note that the system directory is required in the
PATH
system variable.Confirm that the following files have been installed in the
jdkjrelibext
directory, or copy them frominstallerinstallerFiles
:MariaDB Server is available for installation on macOS (formerly Mac OS X) via the Homebrew package manager. MariaDB Server is available as a Homebrew 'bottle', a pre-compiled package. This means you can install it without having to build from source yourself. How to download mariadb on mac. MariaDB intends to maintain high compatibility with MySQL. It is one of the most popular databases in the world. MariaDB is named after the name of younger daughter Maria of its founder Michael 'Monty' Widenius. In this tutorial, we will learn the steps involved in the installation process of MariaDB on MacOS.
Confirm that the file
accessibility.properties
has been installed in thejdkjrelibext
directory, or copy it frominstallerinstallerFiles
. Confirm that the fileaccessibility.properties
includes the following lines:Only if you are using JAWS version 3.7, do the following: modify the file
sqldeveloper.conf
located in the foldersqldeveloperbin
to uncomment theAddVMOption
line, as shown in the following:Start your screen reader.
Start SQL Developer.
These steps assume you are running Windows and using a Windows-based screen reader. A console window that contains error information (if any) will open first and then the main SQL Developer window will appear, once SQL Developer has started. Any messages that appear will not affect the functionality of SQL Developer.
1.9.1 Configuring JAWS 3.70 and Access Bridge with SQL Developer
The following combinations of Access Bridge file versions are necessary to achieve optimal functionality with JAWS 3.70, since this version of the screen reader uses older Java technology than is used in SQL Developer. There are two stacks of software technology listed below for those who want to use either version 1.0.3 or 1.0.4 of the Access Bridge. Also required in the system32
directory is a copy of the latest version of the Access Bridge jar file.
Access Bridge v. 1.0.3 Configuration for SQL Developer
Place the following files in the jdkjrelibext
directory:
Place the following file in the jdkjrelib
directory:
Place the following files in the Windows system32
directory:
Access Bridge v. 1.0.4 Configuration for SQL Developer
Place the following files in the jdkjrelibext
directory:
Place the following file in the jdkjrelib
directory: Mp4 to gif converter download mac.
Place the following files in the Windows system32
directory:
1.10 Uninstalling SQL Developer
Download Sql Developer Client For Mac 64-bit
Before you uninstall SQL Developer, if you plan to install SQL Developer (the same or an updated version) later, you may want to save your existing database connections; and if so, see Section 1.4 before uninstalling.
To uninstall SQL Developer, remove the entire SQL Developer installation directory (that is, the directory named sqldeveloper
and all directories and files under it in the hierarchy).
If you also want to remove all user-specific SQL Developer information, you should also delete the directory under which that information is stored (that is, the SQL Developer user information directory). For the location of this directory, see Section 1.5.
If you have created a shortcut for SQL Developer, and if you do not plan to install SQL Developer into the same location again, you should remove that shortcut or modify the shortcut properties to reflect the new location.
1.11 SQL Developer Documentation
Oracle Sql Developer Download 64
SQL Developer provides user documentation in the Oracle Database SQL Developer User's Guide and in the online help. To see the help, click the Help menu, or click the Help button or press the F1 key in relevant contexts while you are using SQL Developer.
As a convenience, the SQL Developer online help topics are also available in a single PDF file, which you can download separately from the SQL Developer kit.
Sql Server For Mac Download
1.12 Oracle on the Web
Oracle Sql Developer Download Mac
Oracle provides a number of resources on the Web. These are some sites you may find helpful:
SQL Developer home page (OTN):
http://www.oracle.com/technology/products/database/sql_developer/
SQL Developer discussion forum (OTN):
http://forums.oracle.com/forums/forum.jspa?forumID=260
Oracle Technology Network (OTN):
http://www.oracle.com/technology/
PL/SQL page on OTN:
http://www.oracle.com/technology/tech/pl_sql/
Oracle Accessibility site:
http://www.oracle.com/accessibility/
Oracle Corporate site:
http://www.oracle.com/