Categories

Grant EXEC permission on all stored procedures in SQL Server 2005

Share

If you have a large number of stored procedures in your SQL Server 2005 and you have to give EXEC permission to a database user on all of them then the best way to do it is by running the following SQL

SELECT ‘ GRANT EXEC ON ‘+ name +’ TO <database_user> ‘ [...]

Customize menus in Joomla 1.5

Share

Joomla 1.5 has come a long way since Joomla 1.2. Earlier if you had to customize a module you had two choices:

1. Edit code in the actual module file. 2. Write custom code to implement the functionality.

Choosing either of the two steps would involve more time and in the end it also [...]

Realtek audio problem on Intel Desktop board DG31PR

Share

I had recently bought a Core to Duo machine and installed Windows 2003 on it. I had some hesitation installing Windows 2003 on it as people had said that is has limited support for various hardware.

I picked the Intel DG31PR board as it was the most economical in my limited budget. After [...]