Miscellaneous

Technical Article

Display disk space stats for each table

  • Script

Here is my replacement for sp_spaceused, I have altered it so that if no table is past in using the @objname parameter it loops through all the tables which is alot easyer than running the old one for each table and it displays the data one result set. So should be easyer to create a […]

5 (2)

You rated this post out of 5. Change rating

2007-08-23

1,023 reads

Technical Article

Locate primary key - foreign key relations

  • Script

Recently one of my friend was doing some investigation in a new/unknown database and had really hard time locating the primary key – foreign key relations. Like it’s really tough to locate these relations when not enforced at database level in terms of primary key and foreign key constraints. But generally all database developers keep […]

4.14 (7)

You rated this post out of 5. Change rating

2011-09-14 (first published: )

2,746 reads

Technical Article

Create Log tables and Triggers

  • Script

Usually in business applications it is necessary to maintain the history of the data being modified for auditing purposes or for later analysis. Proven way to achieve this is to create a log table for each datatable with an additional column "Action" to indicate what the user has done on the data (either insert, update […]

1.17 (6)

You rated this post out of 5. Change rating

2007-10-26 (first published: )

5,972 reads

Blogs

A New Word: Lilo

By

lilo– n. a friendship that can lie dormant for years only to pick right...

Learning Database Design and Power BI Performance

By

I spend my days working on and managing SQL Server instances—working days at least,...

Free SQL Training: Dive into Databases This December!

By

Want to learn SQL and get some real practice this December? Check out the...

Read the latest Blogs

Forums

https://dmtcart.shop BUY DMT VAPE PENS AND DMT CARTS ONLINE

By cart10

Website: https://dmtcart.shop Legit online shop to get DMT CART & DMT VAPE PENS

Website:https://dmtcart.shop DMT CART

By cart10

Website: https://dmtcart.shop Best legit online shop to get DMT CART  and VAPE PENS Visit...

how to calculate an average only if a minimum number of records exist?

By water490

Hi I am working on a rolling average calculation that is not working quite...

Visit the forum

Question of the Day

The Funny Dynamic SQL

What happens when I run this code:

EXEC sp_executesql N'PRINT 1; GO';

See possible answers