SCIS logo. Link to main SCIS Web Site ECU logo. Link to main ECU Web Site
Skip Navigation LinksSCIS Home > Current Students > Student Essentials > Development Server > Using the Database My SCIS Print Version RSS Help
  
development server links

search scis/www
search scis.ecu.edu.au
search www

staff directory

Student Development Server - Databases

Connecting externally

Note: If you are attempting to access the server externally, you will need to VPN into the network. Code you execute on the development web servers will have no problems accessing either database. For instructions on setting up the VPN for a variety of operating systems click here (ignore any information about connecting your wireless, the settings are the same).

MySQL Connection Information

All teams have databases with the following format:

To test this connection:

View the database via the PHPMyAdmin web interface:

Microsoft SQL Server Connection

Using Microsoft SQL Server Management Express, enter the following details

Note: If you need to use a different username, you need to run the software under different credentials. Right-click the shortcut and select 'Run as...'

Warning: A bug in the software prevents you from being able to create your first table. If you receive an error that the software cannot find the default schema, run this command in a query window:

use [teamxxx]
go
CREATE TABLE [temptable] ( data varchar(10) )
go

You can delete the table after this is done and future tables will be created without errors.