Tag: sql server tables

Stored Procedure to Get Database Tables Information

Database development, Stored Procedures

As SQL Server DBAs, we always take care of one of the most important things for the business, the...
Read More

How to SHOW or LIST Tables in MySQL

Database development, Tables

There are two primary methods to view the tables in MySQL: The MYSQL SHOW TABLES command. Querying the Information_schema.tables table. In...
Read More

Stored Procedure to Delete Duplicate Records in SQL Table

Database development, Stored Procedures, Tables

Sometimes during our run as DBAs, we come up across at least one table that is loaded with duplicate records. Even if the table has a...
Read More

How to Create a Table with Multiple Foreign Keys and Not Get Confused

Constraints, Database development, Tables

Understanding Table Relations SQL server adds foreign keys to implement relations between tables in...
Read More

Moving SQL Server Table to Different Filegroup

Database development, Tables

Introduction A table is a logical structure. When you create a table, you typically would not care which drives it sits on at the storage...
Read More
Close