How to Grant all the permissions to User in MariaDB
How to Grant all the permissions to User in MariaDBIf you would like to provide all permissions like root user to user account, you can use below command.First of all let's create a user by using below...
View ArticleHow to Grant Full Permission on a Database to a User in MariaDB
How to Grant Full Permission on a Database to a User in MariaDBTo provide full permissions on a Databsae to user, you will be using below syntax.Syntax:MariaDB > GRANT ALL ON DatabaseName.* TO...
View ArticleHow to Grant Select Permission on Table/s to User in MariaDB
How to Grant Select Permission on Table/s to User in MariaDBBelow Syntax can be used to provide select permission on table/s in MariaDB.Syntax:On Single TableMariaDB > GRANT select ON tableName to...
View ArticleHow to Grant Update Permission on Table/s to a User in MariaDB
How to Grant Update Permission on Table/s to a User in MariaDBBelow Syntax can be used to provide UPDATE permission on table/s in MariaDB.Syntax:On Single TableMariaDB > GRANT UPDATE ON tableName to...
View ArticleHow to Grant INSERT Permission on Table/s to a User in MariaDB
How to Grant Insert Permission on Table/s to a User in MariaDBBelow Syntax can be used to provide INSERT permission on table/s in MariaDB.Syntax:On Single TableMariaDB > GRANT INSERT ON tableName to...
View ArticleHow to Grant Drop/Create Table Permission to a User in MariaDB
How to Grant Drop/Create Table Permission to a User in MariaDBBelow Syntax can be used to provide Drop and Create permission on table/s in MariaDB.Syntax:On Single TableMariaDB > GRANT Drop, Create...
View ArticleHow to Grant Delete Permission on Table/s to a User in MariaDB
How to Grant Delete Permission on Table/s to a User in MariaDBBelow Syntax can be used to provide DELETE permission on table/s in MariaDB.Syntax:On Single TableMariaDB > GRANT DELETE ON tableName to...
View ArticleHow to Grant Permission on Table Columns in MairaDB
How to Grant Permission on Table Columns in MairaDBIn MariaDB you can provide permission on column leve. Three type of permissions can be provided on column level.SELECT: You can provide select...
View ArticleWhat is GRANT OPTION in MariaDB
What is GRANT OPTION in MariaDBIf you want the user to grant privilleges to other users , you can use WITH GRANT OPTION. The user will be only able to GRANT the permissions he/she has.Syntax:MariaDB...
View ArticleHow to RENAME USER in MariaDB
How to RENAME USER in MariaDBRenaming User account in MariaDB is very easy. Use below statement to rename user in MariaDB.Syntax:MariaDB > RENAME USER 'Old_User_Name'@'host' TO...
View ArticleHow to use REVOKE statement in MariaDB
How to use REVOKE statement in MariaDBTo Revoke permissions of a user account in MariaDB below syntax can be used.Syntax:MariaDB > REVOKE PermissionType ON Object To 'UserName'@'Host';Example: Let's...
View ArticleHow to Change Password in MariaDB by using SET Password
How to Change Password in MariaDB by using SET PasswordTo reset the password in MairaDB, below statment can be used.Syntax:MariaDB > SET PASSWORD FOR 'UserName'@'HostName' =...
View ArticleHow to create ROLE in MariaDB
How to create ROLE in MariaDBRoles in MairaDB really helps to group the permissions to single object ( Role) and then you can assign role to user instead of you create each user indiviually and then...
View ArticleHow to DROP ROLE in MairaDB
How to DROP ROLE in MairaDBIn MariaDB , you can use below statement to drop the role.Syntax:MariaDB > Drop Role RoleName;Example: Let's say if we have a role with name "Role_Select" and we want to...
View ArticleHow to see Permissions of a user in MariaDB
How to see Permissions of a user in MariaDBOnce you are login to MariaDB, you can run below statement to see the permission of currently login user account.MariaDB > Show Grants'If you want to check...
View ArticleMariaDB Admin & Dev Tutorial
MariaDB Tutorial for Admins and DevelopersChapter 1 : InstallationHow to Install MariaDB on Windows 10How to Change MariaDB Data Directory on WindowsHow to Uninstall MariaDB from Windows 10How to...
View ArticleHow to create Keyspaces in Cassandra by using CQL - Cassandra / CQL Tutorial
How to create Keyspaces in Cassandra by using CQLKeyspace is like is database schema.It is top level container/namespace in which tables can be created. Keyspace also defines data replication on...
View ArticleHow to get list of all Keyspaces in Cassandra by using CQL - Cassandra / CQL...
How to get list of all Keyspaces in Cassandra by using CQLKeyspaces table from system_schema keyspace can be used to get the list of all keyspaces in Cassandra.Let's create couple of Keyspaces by using...
View ArticleHow to Alter Keyspace in Cassandra by using CQL - Cassandra / CQL Tutorial
How to Alter Keyspace in Cassandra by using CQLTo create the Keyspace in Cassandra Query Language we use "Create Keyspace Keyspace_Name with options". To Alter existing Keyspace in Cassandra , we can...
View ArticleDecimal Data Type in Cassandra Query Language - Cassandra / CQL Tutorial
Decimal Data Type in Cassandra Query Language ( CQL) Decimal Data Type in Cassandra is used to save integer and float values. Was checking the precision or digits limit that we can save like in other...
View Article