I already have a student version of SQL Server 2008. I used to have a student account which allows me to connect through the university server but since I've graduated I haven't had a chance to create my own databases. I can log on using my LocalHost. But I need to access my database online via php from my website. Could anyone tell me if there are any websites that can give me the opportunity to create online tables and use them via PHP? I have been searching for 2 days straight. I don't know what to search for anymore.
Related
I have made a web page which uses a local SQL database server.
Now that I want to publish the web page and place it online, I have to change everything, because the hosting server uses mySQL and presents me with his own mySQL database, and I don't know how to make that transition, I have an entity model in my solution and the Controller my database.
The specific question is - what are the steps to make that transition?
1 use SQL Tools (don't know what version you have) do a full backup.
2 from the new hosting server, restore the database.
3 change your connection strings or path (depends on programming environment) to use new MySQL.
Here is a link to what I used when I migrated in a similar way as to automate the whole process(Yes, it took a little learning but worth it). https://www.youtube.com/watch?v=rpPANKhbpDs
try to install mysql connector
https://dev.mysql.com/doc/connector-net/en/connector-net-entityframework60.html
MySQL Workbench provides you with the Migration Wizard feature. It allows you to migrate databases from various RDBMS products to MySQL.
This documentation would help you get started,... http://mysqlworkbench.org/2012/07/migrating-from-ms-sql-server-to-mysql-using-workbench-migration-wizard/
There are also several paid tools available which convert MS SQL to MySQL, but I've never used them personally. These tool come with free trial so you can actually test them before purchase. You can also refer similar threads on Stackoverflow,...
How to migrate SQL Server database to MySQL?
How to export SQL Server database to MySQL?
Is it possible to connect from MS ACCESS 2.0 (16bit) to a SQL Server 2005 database (32bit) with ODBC? If it is possible how can I do this? Thanks
You can't without an external tool that does just that, and more!
Check this out!
https://www.quest.com/products/toad-data-point/
TOAD's DATA Point is a product I've used for years and it allows me to connect to practically any database or data source via ODBC and other connection protocols.
The beauty about the product is that I can visually design and link tables from any database into one single SQL query, and it works!
Note: I am not affiliated with Toad or Quest Software. Just a happy customer.
Basically the short story is we have a report generator running on a MySQL database at work and management wants me to modify things so we can connect to tables in an external Access database from this report generator as well. And then create reports that join tables from the MySQL database to the Access database. I suggested exporting the data from Access and importing it into MySQL but they want a live, real-time connection. To complicate things further these are both on different servers right now (MySQL on Linux, Access on Windows) and I'm not sure that can be changed.
I tried to look this up online but all I could find is ways to connect to MySQL from Access, not the reverse.
Is what we are trying to do even possible, and if so, can someone point me in the right direction?
Ive just recently learned SQL. There seems to be a few concepts I cant understand. Please check my statements. SQL is a language you are using to access data in MySQL? MySql is a software for a database server? So this means you can buy your own computer hardware and install MySql there and you can access your files in that specific hardware? Or is MySql only installed in hardwares owned by Oracle and you can only access files there by registering in Oracle?
Here is an example please correct the statement. Im trying to build a website for my students that take in a username and password. This website will use a scripting language that will connect to a database server. So I upload my xhtml, css files, and some scripting language to a webhost. Then those scripting files will connect me to my database server? This means I should have a database server. The database server are MySql, Appache Cassandra. To connect to those database server do I need my own harver server that has these database server installed or do I obtain membership from Oracle(?), Appache(?) to access there database server or is there other ways to store data? I think you guys can see my confusion.
You could say SQL is a standardized language to work with relational databases like MySQL, SQL Server Oracle, PostgreSQL etc They conform more or less to the standardized SQL language
MySQL is open source you can install it on just about any major OS / hardware architecture, for free you don't have to pay anyone anything except for support if you require that
It's possible to host your database on a server and allow remote apps to connect to it.
Apache Cassandra isn't exactly a relational database.
The first thing you need to do is learn to use Google to search for answers to your basic questions. I also recommend Wikipedia.org.
Those two websites can help you learn about what SQL is, MySQL is, scripting languages are, and what servers are.
I'll throw you a bone here. MySQL, PHP, and Apache (1 "p", not 2) are all free software. You can install them on "Windows" or "Linux".
If you're running Windows, also try using Google to research "WAMP stack" or "WAMP".
Just moved to sql azure from mysql / mysql workbench. I installed SQL Server Management Studio and was able to connect to the remote database on SQL Azure. Am able to view the database tables but how do I go about editing the tables or adding a column or a foreign key constraint. When I right click on the table it just gives me options for New Table, Script Table etc.
Does SQL Server Management Studio have something similar to the Mysql workbench UI. There were some posts discussing this but none specific to SQL Azure.
Currently any schema modifications can only be done via script. The things you can do with the GUI are still pretty limited. There are a number of 3rd party tools that offer varying degrees of functionality (houston, navicat, etc.) like you are expecting and I'm sure Microsoft's own offerings will improve. But, for now... scripting is the bread and butter of managing Azure.
A lot of people keep a copy of the database locally to work on with the SSMS GUI. Then when they are happy with what they have use the GUI to create the scripts to apply to the AZURE copy.