Posted by: fcepeda on: December 5, 2008
Today, I needed to run a program with admin rights from a limited account in Windows XP. I googled around and the solution was simple with the following command:
cacls “Program Files\newprogram” /e /t /p users:c
I run this command from the admin account and replaced newprogram with the folder where [...]
Posted by: fcepeda on: December 4, 2008
Yesterday, I spent a few good hours finding why I was not able to create a table because of the infamous errno:150
What happended:
Set foreign key checks to 0
Dump some tables
Set foreing key checks to 1
Try to insert updated tables back in the DB and got the infamous error.
With relational DBs got to be careful with [...]