T-SQL Tricks

Few useful SQL tricks:

Move table to different schema

ALTER SCHEMA targetSchema TRANSFER sourceSchema.tableName

Rename object

sp_rename 'schemaName.tableName.columnName', 'newColumnName'

Leave a Reply

Your email address will not be published. Required fields are marked *

This site uses Akismet to reduce spam. Learn how your comment data is processed.