How to stop Sybase server forcefully
Sometimes it is required to shutdown the Sybase ASE server forcefully. This can be done with “shutdown with no wait” command. This disables the logins, does not issue checkpoint, and it terminates...
View ArticleSybase Interview Questions
How to stop Sybase(ASE) Server? 1> shutdown RUN_Servername 2> go How to stop Sybase backup server? 1> shutdown SYB_BACKUP 2> go How to start Sybase ASE server? To start the server Sybase...
View ArticleChange password in Sybase
When password needs to changed? 1. If we forgot password. 2. When password expiration level reached(If customized). By default option is set to ever expiry password. What are the prerequisites to...
View ArticleLock and Unlock user account in Sybase
What happens if account is locked? 1. User can not login. 2. If any schedule jobs with specified login. When login can be locked. 1. When maximum failed login attempts reached. 2. If password expires...
View ArticleDifference between delete and truncate
Delete: Whenever we are using delete from tablename, then automatically deleted data internally stored in buffer. We can get it back by using rollback command. Truncate: When ever we are using truncate...
View ArticleCreate Role and assign permissions in Sybase
Roles are collections of privileges that allow the role user to perform their jobs. Roles can be created and granted to users, login profiles, or other roles by a system security officer. There are 16...
View ArticleReplication Basic Commands in Sybase
admin who_is_down:it shows which servers are down admin who_is_up : it shows which servers are up admin who:shows all running process admin rssd_name:shows the rep_server securityname admin log_name:...
View ArticleHow to add login script in Sybase
What is login script? Login script is stored procedure to run automatically when user logs in. How to add login script in Sybase: We can add login script using stored procedure sp_modifylogin. 1....
View ArticleHow to rename database in Sybase
stored procedure sp_renamedb is used to change the user database. sp_renamedb dbname, new_name Where dbname is existing database name. new_name is the new database name. Before you rename the database,...
View ArticleThe maximum number of configured devices has already been reached
Following error recieved when tried to create raw device in the server. disk init name=’data43′, physname=’/data/devices/sb_device_data43′, size=’40000M’ Msg 5162, Level16, State1: Server...
View Article