SQL Script to find the tables created from a given date
Below is the SQL query which can be used to find out the tables which are created or modified on…
Below is the SQL query which can be used to find out the tables which are created or modified on…
Sometimes we need to check which tables of our database is highly populated. Below is the T-SQL Script which we…
Many times we need to alter the table definition by adding , deleting or updating a column in the table.…
To rename a column in a SQL Table following command can be reused: SP_RENAME ‘old table name’, ‘New table name’…
We often need to change the name of a column of a table to a new name. We can do…
Introduction Tables can be defined as the structure which contains the data in the database. This article discuss about the…