T-SQL: Updated extended property for a table

31. March 2010

Handy piece of code for updating extended property for a table:

Click here to download code

SQL Server

Search engine collects historical resources

23. March 2010

New Irish online gardening store

22. March 2010

Have everything you could possibly need and deliver around Ireland...and no I am not affiliated in any way.

http://www.quickcrop.ie/

Gardening

Isabella Beach, Ards, Co. Donegal

22. March 2010

Encrypting stored procedures and functions

15. March 2010

To encrypt sprocs and functions prior to deployment include the WITH ENCRYPTION option:

E.g. CREATE PROCEDURE [dbo].[USP_TEST_ENCRYPTION]…

WITH ENCRYPTION

Any encrypted sprocs will then have the lock symbol next to them. Functions will appear the same but you

will get an error message box if you try to access the code.

withEncrypt

SQL Server

Ulysses: Sweny’s Pharmacy

15. March 2010

Interesting story about how Sweny’s has evolved to keep going…they now have readings of Ulysses each Monday morning:

Swenys

QI

T-SQL: Check if database exists

15. March 2010

To check if a database exists, use the DB_ID() function:

IF db_id('AdventureWorks') IS NOT NULL
Print 'Database Exists'
ELSE
Print 'Database Does Not Exists'

SQL Server

CSS References, Tutorials, Cheat Sheets, Conversion Tables and Short Codes

10. March 2010

25 Tutorials and Resources for Learning jQuery UI

10. March 2010

Configuring blogengine email alerts for comments etc

10. March 2010

I had a problem configuring this locally in an organisation, turned out that McAfee was blocking it. Did the following and this fixed it:

Ensure that “Prevent Mass Mails from Sending Worms” is turned off in McAfee on the webserver

 

BlogEngine.NET ,