Relational Database Management system (RDBMS) is a database management system (DBMS) that is based on the relational model. Data from relational database can be accessed or reassembled in many different ways without having to reorganize the database tables. Data from relational database
Featured Post
What is the purpose of the php.ini file?
The PHP configuration file, php.ini , is the final and most immediate way to affect PHP's functionality. The php.ini file is read ea...
What is DBMS ?
The database management system is a collection of programs that enables user to store, retrieve, update and delete information from a database.
Drupal multi-site Drush aliases configuration
If you're running a multi-site Drupal setup, here's how to set up your Drush aliases to easily run commands for specific sites:
1.Go to drush installed directory cd /home/XXX/.drush
2. Create file aliases.drushrc.php, add the below code for multi-site aliases
2. Create file aliases.drushrc.php, add the below code for multi-site aliases
Subscribe to:
Posts (Atom)
Popular Posts
-
You can find maximum salary for each department by grouping all records by DeptId and then using MAX() function to calculate maximum sala...
-
Answer: select * from emp where hiredate < (’01-jan-81’);