Integration Microsoft Access in Oracle Apex - ms-access-2010

Could you please tell me how can I connect Oracle Apex on the cloud with Microsoft Access which is running on an end user's laptop?

Related

while opens the Oracle database facing some error

Hi i am trying to install oracle, i installed completed but while is open the database control- orcl , error is coming in browser that " Your connection is not private".
First of All Oracle doesn't provide web interface so don't try to open on browser. and if don't know how to create DataBase than you should watch this video
https://www.youtube.com/watch?v=hoMiy5vlhU4
I know web interface for MySQL and MSSQL but i don't know any web interface for Oracle 11g.

import User Profile SQL Database to Windows Azure

Im a beginner that is thrying to setup my first website in Windows Azure. I have published it and made a Sql database inside Windows Azure.
In my local virtual machine I have SQL management studio that contain a User profile database. Is there a way to export that one and import to Azure?
You can deploy it directly from SSMS. Right click a database in the Object Explorer pane select Tasks - > Deploy database to Windows Azure SQL Database command:
In the Deployment Settings click the Connect button, and connect to your Azure Server:
Click Next:
Review summary, and click Finish:
After successful deployment connect to your Azure Server in SSMS and you'll see your database:
EDIT:
If you encountered an error during the deployment check the list of limitations in Azure SQL Database:
Azure SQL Database General Guidelines and Limitations
Azure SQL Database Security Guidelines and Limitations
SQL Server Feature Limitations (Azure SQL Database)
Also, here is a blog post on how to use SQL Server Data tools to migrate a database to SQL Azure: Migrating a Database to SQL Azure using SSDT
Hope this helps

Connect APEX account with Oracle Form Builder and SQL Devoloper

Can I connect my apex account to Oracle Form Builder or SQL Developer?
I have Apex.oracle.com Account. Can I connect this account to my SQL Developer in local machine? and in Oracle Form Builder?
An APEX account is very different from a database account. The APEX account only allows you to access the APEX builder application.
You cannot connect to the database behind apex.oracle.com via SQL Developer or any other tool that relies on creating a database connection. You can only connect to the APEX builder application via a web browser.
Oracle provides the express edition of the database (Oracle XE 11g) that you can download and run on your local machine free for whatever you'd like to do (including running commercial apps if you'd like). If you are running a local database, you can create Oracle database accounts that you can access via SQL Developer as well as creating APEX accounts that you can access to develop APEX applications in the APEX builder.

how to connect sql server 2008 R2 with windows store application

I am currently developing a windows store application, I need to connect my app with sql server 2008 R2 Db, some sql classes are not working in the WinRT API, please any one suggest me on this and tell me which RDBMS I can use to connect with.
Thanks
You can't. The reason being that you can't put that kind of restriction on a store app, you should have no dependancy on an external database being available.
You can use sqlite however, and here is a guide: http://timheuer.com/blog/archive/2012/08/07/updated-how-to-using-sqlite-from-windows-store-apps.aspx
If you are wanting to connect to a database to pull data from it (as an enterprise app for example) then you can use web services as a wrapper around the database.

Connect to Remote Oracle database from ASP.NET

My course requires me to connect to an Oracle database server at the university for my project. I am provided with a url (like oracle.xyz.edu) and username and password. How can I connect to the database from Visual Studio. I have only dealt with SQL Server 2008. I don't know how to go ahead with setting up the database. I tried to install Oracle Instant Client, but could not find a setup exe to install. The instant client download zip consists of a set of files. Where can I find the steps to connect to Oracle database from VS.
Do you need to use the Oracle Instant Client? Or would it be acceptable to you to download and install the full version of the Oracle client?
The full version of the Oracle client is generally what ought to be installed on a developer machine. The Instant Client is a very slimmed down version of the client that is designed for developers to distribute along with their Windows applications on machines that do not have or need any way to access the database other than via the application. As a developer, I'd strongly recommend the full version of the Oracle client if only because it includes various additional utilities like SQL*Plus and SQL*Loader.
The full Oracle client is available for download from OTN on the same page that the database is available. For example, the Oracle 11.2 client for 64-bit Windows is a 615 MB download on the OTN site.
Don't use ODBC. Use ODP.NET (Oracle's Instant Client) Oracle Data Provider for .NET. (Read technical notes in provided link.)

Resources