exec sp_MS_Marksystemobject sp_name
Allows you to mark your own stored procedure 'sp_name' as a system object.
(It cannot then be accidently deleted)
Wednesday, February 25, 2009
Tuesday, February 24, 2009
Phrase of the Day : Self-Aggrandizement
self-aggrandizement n. The act or practice of enhancing or exaggerating one's own importance, power, or reputation.
http://www.answers.com/topic/self-aggrandizement
http://www.answers.com/topic/self-aggrandizement
Saturday, February 21, 2009
Enabling 'Remote Desktops' tool in Windows 2008
Enabling "Remote Desktops" Snap-In (switch easily between RDP sessions) om Windows 2008

Start -> Run -> MMC [enter]
Add the “remote desktops” snap-in >

Once added, add the servers you want to manage >
Remember to save settings or you'll have to add them all again!
Labels:
windows 2008
Wednesday, February 18, 2009
SQL 2008 : Resource Governor Video
Video of Resource Governor in action...
http://blogs.technet.com/andrew/archive/2008/02/06/sql-server-2008-resource-governor-in-action.aspx
http://blogs.technet.com/andrew/archive/2008/02/06/sql-server-2008-resource-governor-in-action.aspx
Monday, February 16, 2009
Bookmark : Setting up SVN Server on Windows
SVN or Subversion is a free source control system the PHP devs use here.
Instructions on setting up the Windows version are here >
http://www.codinghorror.com/blog/2008/04/setting-up-subversion-on-windows.html
TortoiseSVN is the windows client for this and quickly allows you to compare differences in files.
Instructions on setting up the Windows version are here >
http://www.codinghorror.com/blog/2008/04/setting-up-subversion-on-windows.html
TortoiseSVN is the windows client for this and quickly allows you to compare differences in files.
Labels:
bookmark
Friday, February 13, 2009
Windows Firewall - Dell OpenManage
To allow Dell OpenManage through Windows FIrewall, open TCP 1311 (for http traffic).
Tuesday, February 3, 2009
Delete SQL backup files over X days old.
Put this in a batch file and schedule it!
FORFILES /p C:\!DB_BACKUP_TEMP /s /m *.BAK /d -7 /c “CMD /C del /Q @FILE”
Careful copying the above command, the double quotes mess it up! copy into notepad, retype the double quotes, then it will be fine!
Note the -7 for 7 days.
http://thebackroomtech.com/2007/12/07/howto-automatically-remove-files-older-than-%e2%80%98x%e2%80%99-days-part-ii/
FORFILES /p C:\!DB_BACKUP_TEMP /s /m *.BAK /d -7 /c “CMD /C del /Q @FILE”
Careful copying the above command, the double quotes mess it up! copy into notepad, retype the double quotes, then it will be fine!
Note the -7 for 7 days.
http://thebackroomtech.com/2007/12/07/howto-automatically-remove-files-older-than-%e2%80%98x%e2%80%99-days-part-ii/
Labels:
systems
Script : Mount a TrueCrypt Volume
Assuming a standard install of Truecrypt, create a Batch (.bat) file that does this >
c:
cd\
cd \program files (x86)
cd TrueCrypt
IF EXIST E:\path\truecryptvolume.tc truecrypt /v E:\path\truecryptvolume.tc /l x /p "secure-password" /q
IF EXIST F:\path\truecryptvolume.tc truecrypt /v F:\path\truecryptvolume.tc /l x /p "secure-password" /q
This file mounts the volume as drive letter X: (the x follows the /l parameter)
I use 2 removable drives for alternate days. They are mounted by Windows as E: and F: respectfully. This is why the script checks for both each time and uses the /q for quiet switch to surpress any error messages.
Dismounting the same volume >
c:
cd\
cd \program files (x86)
cd TrueCrypt
truecrypt /dx /q
c:
cd\
cd \program files (x86)
cd TrueCrypt
IF EXIST E:\path\truecryptvolume.tc truecrypt /v E:\path\truecryptvolume.tc /l x /p "secure-password" /q
IF EXIST F:\path\truecryptvolume.tc truecrypt /v F:\path\truecryptvolume.tc /l x /p "secure-password" /q
This file mounts the volume as drive letter X: (the x follows the /l parameter)
I use 2 removable drives for alternate days. They are mounted by Windows as E: and F: respectfully. This is why the script checks for both each time and uses the /q for quiet switch to surpress any error messages.
Dismounting the same volume >
c:
cd\
cd \program files (x86)
cd TrueCrypt
truecrypt /dx /q
Monday, February 2, 2009
SQL 2008 : System Views Poster
The SQL 2008 System Views poster is finally out.
For your office / bedroom / toilet wall *
* (for wherever you do your thinking)
http://www.microsoft.com/downloads/details.aspx?FamilyID=531c53e7-8a2a-4375-8f2f-5d799aa67b5c&displaylang=en
For your office / bedroom / toilet wall *
* (for wherever you do your thinking)
http://www.microsoft.com/downloads/details.aspx?FamilyID=531c53e7-8a2a-4375-8f2f-5d799aa67b5c&displaylang=en
Subscribe to:
Posts (Atom)