Posted by Sem Dendoncker on March 28th, 2009
Hi,
I’ve installed windows vista 64 bit a couple of days ago, but in the eventlogs I saw this “error” that keeps reappearing every reboot.

I looked for a solution and found one.
http://support.microsoft.com/kb/950375
In short it says that this error is caused by a permission problem, a fix will be delivered by Microsoft someday (who knows when). And with an easy script you can just ignore these errors.
Hope it helps some of you guys out.
Greetz,
Sem
Posted by Sem Dendoncker on March 19th, 2009
Hi,
Like many I’m a beginning photographer who can use a lot of tips, hints and help.
You can allways take courses but those cost lots of money and time.
Therefore selfeducation is a good way of learning at your own level and tempo.
I’ve found a great link containing lot’s of tips for beginning (and professional) photographers.
Have fun with it: http://digital-photography-school.com/
Cheers,
Mayiko
Posted by Sem Dendoncker on March 19th, 2009
Hi,
Sometimes it comes in handy to send reports to a list of persons containing the result of a storedprocedure.
ie: A stored procedure that will return all corrupt nodes in a tree.
I’ve found something very interesting to do this.
In SQL Server a stored procedure exists that can do this for you: “sp_send_dbmail”.
In case you want to send a mail containing the results of a stored procedure you can use the following sql statement.
EXEC msdb.dbo.sp_send_dbmail
@profile_name = 'AdventureWorks Administrator',
@recipients = 'danw@Adventure-Works.com',
@query = N'sp_Maintenance_CheckNodes',
@attach_query_result_as_file = 1 ;
This will send the results as an attached file.
Cool eh.
More information about “sp_send_dbmail” can be found at SQL Mailing.
Here you can find how to configurate your sql server for mailing.
Cheers,
Sem
Recent Comments