Home
RECOMMENDED FOR YOU:
SMS Gateway software
Ozeki brings you outstanding
SMS Gateway technology. Use our SMS Server products on Windows,Linux, or Android

C# SMS API
Developers can use our C# SMS API to send SMS from C#.Net. The C# SMS API comes with full source code

PHP SMS API
The ozeki PHP SMS gateway software can be used to send SMS from PHP and to receive SMS usig PHP on your website

SMPP SMS Gateway
SMS service providers use our SMPP gateway solution, that offers a high performance SMPP server and SMPP client gateway with amazing routing capabilities

How to create a user in MS SQL that can be used by Ozeki NG

To create a SQL Server login that uses SQL Server Authentication (SQL Server Management Studio) follow these steps.

  1. In SQL Server Management Studio, open Object Explorer and expand the folder of the server instance in which to create the new login.
  2. Right-click the Security folder, point to New, and then click Login.
  3. On the General page, enter a name for the new login in the Login name box.
  4. Select SQL Server Authentication. Windows Authentication is the more secure option.
  5. Enter a password for the login.
  6. Select the password policy options that should be applied to the new login. In general, enforcing password policy is the more secure option.
  7. Click OK.

To create a SQL Server login that uses SQL Server Authentication (Transact-SQL) In Query Editor, enter the following SQL command:

CREATE LOGIN [login name] WITH PASSWORD = '[password]' ; GO

More information