How to increase the space of database in sql 2008 - sql-server-2008

I have a domain in godaddy window server and its totaly full . I want to increase the space of my database or add a new database with the same domain .
How can I do that.?

Related

MS SQL Linked Server to MariaDB (Mysql) wont work with readonly mariadb user

We have scenario where our MS SQL access data on a MariaDB (Mysql) database through a Linked Server.
That has been working fine so far, but we now need to limit the user that's being used by the Linked Server configuration so it's readonly. We created a user with read only access, but when changing the connection details on the Linked Server it won't work anymore. It can't even connect to the openquery, saying the user / password arent correct.
Do you know if there's a work around for this? Linked Server configuration will only work with users that have full access to the mysql DB, and we need to restrict that access.
Thanks!

How do I put a msmysql DB backup onto mySQL

Is there a way to move a msmysql database onto a webhost mySQL? I'm working with this tutorial for a private Dekaron server and its saying to use msmysql 2000. However I already have a webhost that allows me upto 40 and uses mySQL. Is there anyway to put these database backups onto the mySQL instead?

MySQL Workbench - Define database in connection settings

I was wondering whether there is a way to define a specific database in the connection setup of MySQL Workbench (I know this works with other database software). Sometimes I have a lot of different databases on one server and I only want to access one with one connection. Can I specify the database in the connection settings somehow?
YES, On the home tab Click the + in MySQL Connections. And put the database name in the Default Schema: when you fill in all the usual info about ip address etc
Now if you only want to see the one database, then create a new MySQL user account and only allow this new account access to this single database. Then change the connection to the database to use the newly created MySQL account.
I guess you are seeing all the databases because you are using the root account.

How can I migrate my MsSQL database on a hosted website to a MySQL database on a different hosted website?

I have a MsSQL 2008 database hosted on somee.com . I have purchased another hosting under net4.in which is providing me MySQL database. So now, how can I migrate/synchronise my MsSQL database to the MySQL database ?
I have tried below things but in vain :
There is an inbuilt facility provided in the MySQL in net4.in to synchronise two databases on remote servers,where I have tried selecting the target server as "Current Server" and in Source Server, I have selected "Remote Server" and provided connection details which were available to me from somee.com . Unfortunately, the Socket and Port details are not provided on somee.com, I have tried giving various values like "TCP/IP" and "1433"(the default value) but in vain.
There is an import facility in MySQL in net4.in , in which I have given the format of imported file as "SQL" and SQL compatibility mode as "MSSQL" , but it is giving an error showing some encrypted text from my MSSQL database saying that its not able to understand it.
The easiest way is to export a csv or .sql file of your existing database then import it using our web-based DB management tools at http://db.infuseweb.com.
However, this may not always be effective especially if you have very large database files. In which case you will need to submit a support ticket and provide us with a MSSQL .bak file or all the MySQL database files from your old host. You will also need to create an empty database in Helm with the exact same database name and users/passwords that you have with your old host. We will then move the database under your account.

How to make a mysql database in windows

Currently I'm working on access database(.mdb) but I wanted to transfer to mysql database. Currently I'm working on windows 7 machine and installed mysql from http://www.mysql.com/downloads/installer/ .
I opened Mysql workbench and created a new EER MODAL ?? as shown in this screenshot . But I still couldn't figure out which one is the database and how to use it. Heres another screenshot of the table modal , and how to save the database to a location when I want.
PS: I'm totally new to mysql and I use access databases and I still don't know if I'm in the right way. Please suggest me if not. thanks
You have the MySQL server running on your local machine. To access it, you would connect to localhost:3306 (I think you have your port set to 3306 from the screenshot I see).
Your second screenshot is the database you are connected to in SQL workbench and what tables it contains. If you give some information on how you are going to be using the DB, I can give you some more information to point you in the right direction.
You don't have to create a new ERR Model. Just make a new connection and New server instance & you are done. If possible do try to install Wamp too.