I am bored of the black color, how can I change it?
It's rather easy. You can configure the DOS window and change some of the things around. Color for one is easy to change.
Open a DOS Window from Start | Run
Right click the top of DOS window inside the title bar. From the drop-down click on Defaults. This opens the following window.
Now click on the Colors tab in the above window. I have changed both the Screen Background as well as the Screen Text. You can immediately see the changes you are making.
The next time you open the DOS window you will see the changes provided you clicked OK to the above screen after the changes.
The readers of my articles on several forums asks questions regarding something or the other and I do answer them promptly. However I feel the answers should be shared among a larger group of people. I think this blog will make this possible.
Tuesday, March 24, 2009
Sunday, March 1, 2009
What is Upsert?
Upsert provides the following SQL functionality:
If something does not exist in a table then insert it. If it exists then update it.
This is something like what happens when you move a file to a folder, if the file exists it will ask you whether you want to replace it with a new version or not. If the file does not exist it is inserted, no questions asked.
This is implemented by MERGE in SQL Server 2008
If something does not exist in a table then insert it. If it exists then update it.
This is something like what happens when you move a file to a folder, if the file exists it will ask you whether you want to replace it with a new version or not. If the file does not exist it is inserted, no questions asked.
This is implemented by MERGE in SQL Server 2008
Subscribe to:
Posts (Atom)