DbSchema is a powerful database management and design tool for SQL Anywhere. It offers features such as visual schema design, team collaboration with GIT, schema deployment and HTML schema documentation.
Choose "Connect to the database" or "New Model Connected to the Database" will let you select your database and open the Connection Dialog.
DbSchema automatically downloads the JDBC driver to connect to your database.
In the Connection Dialog window, select the JDBC URL you want to connect with. If your database is running in the cloud, choose Edit Manually and insert the JDBC URL from the cloud console.
Enter the host name, the authentication details, select your database as described in the Connection Dialog page.
C:\Program Files\SQL Anywhere 17\Bin64>dbsrv17.exe -x tcpip -n server1This should start the network service.
The default database user is 'DBA' with password 'sql'. The demodb may be installed.
From Sybase Central you can create a new database. You will have to enter the file location. Then you will have to create a service for it. You can do this by selecting the SqlAnywhere:
The next step is to install a Service ( windows service ) for this database, which means that the db always will be running.
A typical service configuration looks like this:
Next step is to start the Network tools. They can be found from the Start menu in the 'SqlAnywhere/ Tools / Network Tools Demo'. Starting them will start a listener on port 2638. Use the Ping button from the DbSchema Connection dialog to check the port.
One other way is to start the service tag:
The service can be started also from the Command Prompt using the command:
dbsrv16.exeJust execute this and a dialog will ask for the database location and server name. Then you can connect to it from the SQL Central using the server name. If you get permission errors try to run the Command Prompt as Administrator. There is no need to create a server for the created database, just a Service is enough.
Some useful queries:
// list dbspaces ( are tablespaces with associated files ) select * from sysdbspace; CREATE USER bubu IDENTIFIED BY bubu; GRANT CONNECT TO bubu; GRANT RESOURCE TO bubu; GRANT CREATE on system to bubu; COMMENT ON USER bubu IS 'Test user to test some system features without DBA privileges.';