All Articles DSC04004

SQLAuthority News – Gandhinagar SQL Server User Group Meeting April 24, 2009

We had another successful Gandhinagar SQL Server User Group Meeting on April 24, 2009. In spite of our User Group being just two months old, it received overwhelming warm response from the audience! The meeting once again saw around 50 SQL Server enthusiasts eagerly looking forward to brush up their…
Read More
All Articles SqlQueryResult2-600x200

SQL SERVER – Introduction to SQL Server Encryption and Symmetric Key Encryption Tutorial with Script

SQL Server 2005 and SQL Server 2008 provide encryption as a new feature to protect data against hackers’ attacks. Hackers might be able to penetrate the database or tables, but owing to encryption they would not be able to understand the data or make use of it. Nowadays, it has become imperative to encrypt crucial security-related data while storing in the database as well as during transmission across a network between the client and the server.

Read More

SQL SERVER – List All the Tables for All Databases Using System Tables

Today we will go over very simple script which will list all the tables for all the database. sp_msforeachdb 'select "?" AS db, * from [?].sys.tables' Update: Based on comments received below I have updated this article. Thank you to all the readers. This is good example where something small like this have good participation from…
Read More