Subscribe

Subscribe

Vladstudio

Coder Girl

I just found this great tune on Youtube.

Being a bit of a coder myself I love all the coding references, and its a great tune.

Very well done.

Via DarrenKitchen.net

Resetting the SA password in Microsoft SQL Server

You cannot change the SA password in Microsoft SQL server like you do a users password.

To change the SA password you need to run the following command from a DOS prompt.
You will of course need to have some sort of SQL client installed.

C:> OSQL -E -S -dmaster -n -iC:\temp\sa.sql

where sa.sql contains

sp_password @new = ‘will_never_forget_again’, @loginame [...]

Freeze rows in excel

I often use Microsoft Excel at work to collate data. One feature I’ve always had trouble with is the freeze funtion.
I could never seem to get it to freeze the columns/rows i wanted to. So the other day i sat down and tried to work it out.

To lock rows,  select the row below where you [...]

Resetting your Windows Photo Gallery Library

I kind of like using Window Photo Gallery in Windows Vista. Its a nice way to display and browse my photos.
But recently I moved my photo collection and Photo Gallery “lost” most the photos.
There didn’t appear to a way to delete a photo from the gallery without deleting it from the disk as well.

After some [...]

How to change hostname in Linux

I’m trying to build an Oracle RAC system at work to understand how it works better. As part of this I had to build three Linux systems. I built one, then cloned it (it was a virtual machine in VMware).

But having done that, it of course kept the hostname of the first machine. So I [...]