Manage SQL Databases

Note: the following article is only targeting Microsoft SQL Server (I regret...).

In a previous article I have discussed the schema generation and schema update offered by NHibernate. In this post I want to discuss a way how you can generate and/or maintain your SQL Server database.

When practicing agile development one of the most important cornerstones of this methodology is implementing continuous integration (CI). That is any solution your team develops should be able to build in fully automated manner. One of the build steps is of course the creation and or update of the database and the database schema.

Tools to automate the build process

Many people use either nant or msbuild to fully automate their build. And when I say build it includes the following tasks(others are possible)

  • versioning/tagging the sources
  • compiling the sources (in Visual Studio called build)
  • running unit tests, integration tests, acceptance tests, stress tests
  • dropping and re-creating the database
  • re-creating the database schema
  • creating a package
  • if Web: deploy the web site
  • if Other: create installer

In this post I'll discuss the two tasks marked in blue.

The nant task

There is an OSS project on Google Code which is dedicated to the change management of SQL server databases. It's called Tarantino and can be found here. One of the outcome of this project is a custom nant task called manageSqlDatabase. We will use nant and this custom task to manage our (sample) database.

You need the following files to be able to use the custom task

To get the files for your own solution either download the sample solution accompanying this post or download it directly from the Tarantino project which you can find here.

The build file

The general format of the custom nant task is

<manageSqlDatabase
  scriptDirectory="${database.script.directory}"
  action="${action}"
  server="${database.server}"
  integratedAuthentication="${database.integrated}"
  database="${database.name}"
  username="${database.username}"
  password="${database.password}"
/>

The sriptDirectory contains the path to the files which contain the schema creation and/or schema update statements.

The possible actions are

  • dropDatabase
  • createDatabase
  • rebuildDatabase
  • updateDatabase

The server parameter must contain the name of the SQL Server (e.g. "localhost/SQLEXPRESS").

The parameter IntegratedAuthentication can be either true or false.

The parameter database contais the name of the database to re-create or update (e.g. "SampleDatabase")

The parameters username and password are only needed if IntegratedAuthentication is set to false.

A typical create database scenario could be as shown below

<manageSqlDatabase
  scriptDirectory="src\database"
  action="createDatabase"
  server="localhost"
  integratedAuthentication="true"
  database="SampleDatabase"
/>

Let's not construct a complete build file for nant which includes the task of dropping and re-creating a database and the creation of the database schema. We create a new empty file called default.build and enter the following XML fragments.

<?xml version="1.0" encoding="utf-8"?>
<project name="DemoSolution" default="builddatabase" 
         xmlns="http://nant.sf.net/release/0.85/nant.xsd">
    <property name="solution.dir" value="src" />
    <property name="database.script.directory" value="${solution.dir}/Database"/>
    <property name="database.server" value="localhost"/>
    <property name="database.name" value="${project::get-name()}"/>
 
    <target name="builddatabase" depends="dropDatabase, createDatabase" />
    
    <target name="dropDatabase">
  </target>
    
    <target name="createDatabase">
  </target>
  
</project>

In this file we define a new nant project called DemoSolution. The default target that is executed is builddatabase. Then we define some properties for reference in our project (if you are not fluent in nant syntax please consult the online documentation here.)

The builddatabase target does nothing else than trigger the targets dropDatabase and createDatabase, that is if the database already exists then it is dropped and then re-created. Finally the database schema is created. But wait, those two targets are empty at the moment and will do absolutely nothing at the moment.

Let's now add this helper target to the build file - we want to avoid duplication don't we?

<target name="manageSqlDatabase">
  <manageSqlDatabase
    scriptDirectory="${database.script.directory}"
    action="${action}"
    server="${database.server}"
    integratedAuthentication="true"
    database="${database.name}"
  />
 
  <if test="${action != 'Drop'}">
    <echo message="Current Database Version: ${usdDatabaseVersion}" />
  </if>
 
</target>

it will be called by the dropDatabase and createDatabase targets where each provides another action parameter. Note that the usdDatabaseVersion parameter is generated by the manageSqlDatabase custom task.

Now we complete the dropDatabase and createDatabase targets as follows

<target name="dropDatabase">
  <property name="action" value="Drop" />
  <call target="manageSqlDatabase" failonerror="false"/>
</target>
 
<target name="createDatabase">
  <property name="action" value="Create" />
  <call target="manageSqlDatabase" />
</target>

that is we use the standard call task of nunit to trigger the custom task. Note that the dropDatabase target calls the custom task with failonerror set to false (default is true). It is possible that the database does not yet exist. In this case the build should just continue.

The script files

One of the main parts in the automation process is still missing. It's the SQL script files which generate and/or update the database schema. These files have to be valid SQL scripts (you should be able to run these scripts without errors in e.g. a query session in "SQL Server Management Studio"). The scripts can contain DDL and DML statements. They have to be sequentially numbered, e.g.

  • 0001_CreateBaseSchema.sql
  • 0002_AddProductAndCategory.sql
  • 0003_AddIndexes.sql
  • 0004_InitialDataLoad.sql
  • etc.

You can freely choose any name after the underscore. The manageSqlDatabase nant task will apply the scripts sequentially starting with the lowest number and ending with the highest number. When creating the database the manageSqlDatabase nant task will add a special table to the database which keeps track of which scripts have been applied.

How to create the script files

The initial schema generation script I normally generate by using NHibernate's schema export utility. See this post for an in depth discussion. Alternatively you can also use the script database objects task of "SQL Server Management Studio". For any further modifications of the schema (especially if the first version is already in production) I use a product like Redgate's SQL Compare or the same product from Apex to generate the alter scripts.

Execute the build

We can now execute the build by invoking the following command

bin\nant\nant.exe -buildfile:default.build

we can write a batch file builddatabase.bat to further automate the process. The content of the batch file might be as follows

bin\nant\nant.exe -buildfile:default.build
pause

Sample Code

You can download a little sample from here. You need to have an SQL Server available. A local installation of SQL Server Express Edition is enough. Please adjust the properties database.server and database.name in the file default.build according your needs. Double click the file builddatabase.bat to test the creation of the database and the database schema.

Enjoy!

Blog Signature Gabriel

Print | posted on Monday, August 04, 2008 10:15 AM

Comments on this post

# re: Manage SQL Databases

Requesting Gravatar...
Hi

download code is user\password protected.

Thanks
Disa
Left by Disa on Apr 30, 2009 12:46 AM

# re: Manage SQL Databases

Requesting Gravatar...
"You need to have an SQL Server available. A local installation of SQL Server Express Edition is enough." Is simple hosting enough?
Left by michelin floor jack on Sep 03, 2009 11:34 PM

# re: Manage SQL Databases

Requesting Gravatar...
I just want to make a self hosted wordpress blog, i am having a domain and hosting. Could you please help me out how to install wordpress.
Left by top 10 hosting on Oct 21, 2009 11:03 PM

# re: Manage SQL Databases

Requesting Gravatar...
Hello Gabriel, could you please let read-only access to the SVN to allow your readers follow your demo sample? It asked for login/password i could not find in the article. Thank you!
Left by brainboost on Nov 11, 2009 12:08 AM

# re: Manage SQL Databases

Requesting Gravatar...
UPD:
Please, update the link for the sample project, the right one is this, as the original required authorization.
Left by brainboost on Nov 11, 2009 12:57 AM

# re: Manage SQL Databases

Requesting Gravatar...
database.name in the file default.build according your needs. Double click the file builddatabase.bat to test the creation of the database and the database schema.
Left by Orkut Greetings on Nov 16, 2009 10:55 AM

# re: Manage SQL Databases

Requesting Gravatar...
Managing the large databases has become easy by the use of SQL database, thanks for sharing the information.
Left by Marc Jacobs Sunglasses on Nov 20, 2009 10:49 AM

# re: Manage SQL Databases

Requesting Gravatar...
Sounds like your skills are great when it comes to databases. I'm in the learning process, which is why I am here. My day job is an engine builder and automotive machinist.
Left by engine block on Nov 25, 2009 2:58 PM

# re: Manage SQL Databases

Requesting Gravatar...
With the help of SQL it is very easy to manage bulky data. Thanks
Left by Limo NY on Dec 03, 2009 12:44 PM

# re: Manage SQL Databases

Requesting Gravatar...
Very helpful post for managing SQL. Everything is explained well. Thanks for sharing.
Left by Edmonton Website Design on Dec 06, 2009 12:31 PM

# re: Manage SQL Databases

Requesting Gravatar...
Great post, thanks I love reading your blog
Left by structured settlements on Dec 06, 2009 8:05 PM

# re: Manage SQL Databases

Requesting Gravatar...
SQL is not simply to use? If you can’t write a good sql query, you are not a good developer The relational database model is I think is obvious) the best for the moment. If not… why is Oracle where it isQL Server,mySQL,Postgre..
Left by guide to online Bingo odds on Dec 08, 2009 9:27 PM

# re: Manage SQL Databases

Requesting Gravatar...
Double click the file builddatabase.bat to test the creation of the database and the database schema.
Left by pandora jewelry on Dec 24, 2009 11:59 PM

# re: Manage SQL Databases

Requesting Gravatar...
What an amazing post that I have ever come through. It gives the information that I was really searching for the past week and I am really satisfied with this post. Need more like this. Thank you.
Left by designer sunglasses on Dec 25, 2009 10:19 AM

# re: Manage SQL Databases

Requesting Gravatar...
Great tips. Thanks for good information!
Left by Web design service on Dec 30, 2009 8:01 AM

# re: Manage SQL Databases

Requesting Gravatar...
very informative article. Thanks a lot for sharing.
Left by Sally blog on Jan 10, 2010 8:39 PM

# re: Manage SQL Databases

Requesting Gravatar...
Greetings to you. I would like to maintain two database. one for storing the data from the GUI and another database for reporting service(SSRS).Now i want to move the data from orginal database to reporting database. how can i handle, either through trigger or any other method.Need Advice.
Left by astuces du casino on Jan 14, 2010 8:00 PM

# re: Manage SQL Databases

Requesting Gravatar...
thanks for sharing it
Left by make money online on Jan 16, 2010 1:17 PM

# re: Manage SQL Databases

Requesting Gravatar...

I am happy to find this post very useful for me, as it contains lot of information. I always prefer to read the quality content and this thing I found in you post. Thanks for sharinging.
Left by International Foods Online on Jan 16, 2010 3:04 PM

# re: Manage SQL Databases

Requesting Gravatar...
I am happy to find this post very useful for me, as it contains lot of information. I always prefer to read the quality content and this thing I found in you post. Thanks for sharinging.
Left by Movers Brooklyn on Jan 16, 2010 3:06 PM

# re: Manage SQL Databases

Requesting Gravatar...

I admit, I have not been on this webpage in a long time... however it was another joy to see It is such an important topic and ignored by so many, even professionals. I thank you to help making people more aware of possible issues.
Great stuff as usual.
Left by new york bus charter on Jan 18, 2010 12:03 AM

# re: Manage SQL Databases

Requesting Gravatar...
Managing the large databases has become easy by the use of SQL database, thanks for sharing the information.
Left by Target on Jan 20, 2010 9:46 PM

# re: Manage SQL Databases

Requesting Gravatar...
Excellent post! I always enjoy a solid technical post (and code) It saved me a good week+ - Keep up the good work!
Left by Rapid Share on Jan 21, 2010 12:01 AM

# re: Manage SQL Databases

Requesting Gravatar...
Very nice post. Information given is nicely elaborated.
Left by last longer in bed on Jan 21, 2010 10:32 PM

# re: Manage SQL Databases

Requesting Gravatar...
What's more, a bracelet can also be equipped with different small pandora jewelry and even you can change it according to your mood at any time. Here are some meanings of pendant. Small Plane stands for traveling and adventure ; anchor, stability and hope; your baby's boots, having a lot of babies; small feeding pandora bracelets abundant food; Church means happiness and stability of marriage; dragonfly means riches; Eiffel Tower means travel and exploration; four-leaf clover means fortune; horseshoe means luck; Nest means a happy family; bride shows a happy bride in her coming pandora jewelleryship steering shows calming and confidence; pandora ukcoin pandora beadsshows rich marriage life. Wish bone, dreams being about to come true; pandora charm bracelets, love; one heart shot by an arrow, romantic love; purse, wealth; and heart-shaped lock, true love.yurtre4t
Left by pandora jewelry on Jan 28, 2010 6:45 PM

# re: Manage SQL Databases

Left by 25th Wedding Anniversary on Feb 02, 2010 10:55 PM

# re: Manage SQL Databases

Requesting Gravatar...
I will forward this article to him. Pretty sure he will have a good read. Thanks for sharing!
computer science degree | Online Information Technology degree | Multimedia degree | Network degree | Online Software Engineering degree
Left by siomy on Feb 09, 2010 9:58 PM

# re: Manage SQL Databases

Requesting Gravatar...
SQL databases are the life blood of the current running scripts... just like the post and Stamps.com Review or Print Postage Online
Left by Gourmet Coffee Clubs on Feb 17, 2010 7:40 PM

# re: Manage SQL Databases

Requesting Gravatar...
i am taking My SQL classes. You post has a wonderful information. I am learning from your posts more than classes. Keep it up. Thanks
Left by forex trading on Feb 19, 2010 10:53 AM

# re: Manage SQL Databases

Left by gucci shoes on Feb 21, 2010 2:11 PM

# re: Manage SQL Databases

Requesting Gravatar...
Very cheap, very seductive, to echocardiography. Strongly recommended! ! !
panora jewelry
panora jewelry
Left by pandora jewelry pzm on Feb 21, 2010 2:46 PM

# re: Manage SQL Databases

Requesting Gravatar...
i personally prefer these rather than any other things.. MYSQL is best -
Guarana Supplements
Guarana Weight Loss
Left by Guarana Supplements on Feb 22, 2010 7:36 PM

# Bounty Bay gold

Requesting Gravatar...
Do you knowBounty Bay gold?if you play the online game,you will knowBBO Goldis the game gold. In the game,if you had moreBounty Bay Online Gold ,you will had a tall level.But if you want Bounty Bay Coin,you can come here and spend a little money to boughtBBO Coin.Quickly come here.
Left by Bounty Bay gold on Feb 24, 2010 1:19 PM

# discount Ugg Broome Boots in chestnut leather online sales

Requesting Gravatar...
YS0225A8 Before there was no rason in the world,As now there is!The moncler jackets course of water was my only course,My repetitions oceans' sough and swell ugg adirondack boots!My seasons pleasurable,Before there was no reason in the world,As now there is ugg broome boots!To measure time from sleep I rose to sleep,To measure space I pastured on surprise http://www.edhardy-buy.com/,O meadows of resemblances,I was the grove on whose mosaic floors,The moncler online seeds of otherwise were spent,My gods had many arms,I was the Caesar of unmarshaled grass ugg boots!Faustus in the branches,My first ambitions were my sorrows long!Before there was no reason in the world,As now there is!
Left by discount womens moncler jacket on Feb 24, 2010 10:46 PM

# discount air jordan shoes 23 sales online

Requesting Gravatar...
YS0225A7 when the sun hugs the moon, tsky clses her eyes.when the sun hug the moon the sea quiet her jordans shoes.when the sun hugs the moon,the forest stops her susurrus.when the sun hugs the nike sb dunk high,the desert hodlds her breathe.Thousands of years's waiting is only for this nike acg shoes moment.Never be disappointed.Never give up.It hax been sucha long time.At nike air max 2003 this momentmeet each other in course of time.Do not cry,Moon.I guard you forever.Cause you are in my life,everyting has its meaning.The fascinating Diamond Ring,is the ring i give you,May it give you warm http://www.nikejordanshoes2sell.com/ threduce your tears.Do not cry,Sun,I will be there with you forever/Meeting you has given me precious memeory.The resplendent Baily Beads.is the gem i give you .May i give you cheap air jordan 22 shoes strength, shine in your morning.Meet soon and part soon.It makes peop;e retrospect in spite of lasting a few minutes.A long times waiting is coming.Don't know when the next meeting is .When the sun hugs the Moon. the Moon hugs the sun as well Hugging tightly,regian the lost nicety.
Left by discount nike air max shoes sale on Feb 24, 2010 10:48 PM

# discount air jordan shoes 25 sales online

Requesting Gravatar...
YS0225A6 When you belive,Though hope is frail.It's hard to kill,Who knows what cheap prada shoes miracles,You can achieve,When you belive! Somehow you will,

You will when you belive new nike air max!And in this time of fear, Wh prayer so often proves in vain, Hope seems like the http://www.nikeaf1jordanshoes.com/summer birds. Too swiftly flown away, And now I am standing wholesale gucci shoes here.My heart's so full I can't explain.Seeking faith and speaking women's nike shox words I never thought I'd say, They don't always happen when you ask authentic air jordan shoes.And it's easy to give in to your fear. But when you're blinded by your pain!
Left by discount mens moncler down coat on Feb 24, 2010 10:50 PM

# discount ed hardy women long sleeve shirts sales online

Requesting Gravatar...
YS0225A5 If you think you are beaten, you are! If you think you dare noted hardy clothing, you don't! If you want to win but think you can't, It's almost a cinch you won't ed hardy hoodies! If you think you'll lose,you're lot! For out of the world we find.Success begins with a fellow's will,It's all in a ed hardy shirts state of mind! Life's battles don't always go.To the stronger and faster ed hardy coats man,But sooner or later the man who wins,Is the man who thinks he can! When You Belive http://www.edfashionclothes.com/,Many night we've prayed!With no proof anyone could hear!In our heart a hopeful moncler online store song,we barely understood!Now we are not afraid !Although we know there's much to fear!We were moving the moncler jackets mountian long,Before we knew we could!There can be miracles!
Left by discount mens moncler down coat on Feb 24, 2010 10:51 PM

# discount christian louboutin sandals online sales

Requesting Gravatar...
YS0226A1 That your heart has been broken,Hear th words,I'm here, my child,;And know your christian louboutin uk angel has spoken.For even in the darkest hour,When all of discount louboutin shoes hope seems gone,They'll give you strength to live your life,And desire to go on.And if your faith in Heaven, Should ever fade away,They'll help renew your christian louboutin boots spirit, And help you find your way.Even though you're ever filled with doubt, About the christian louboutin pumps life you live,Know that they are there to give you All that they can give.For you see, the Father sent them,Because to Him, you mean so much,That He sent them just for you,my louboutin sale friend,And your life, they will touch.They will always be here,They will never leave your http://www.christianlouboutinshoestore.com/ side;And upon their strength and guidance,You always may rely.Take comfort in their guidance, Draw strength from up above,And know that their sweet presence,Is God's precious gift of love.
Left by cheap christian louboutin shoes on Feb 25, 2010 3:30 PM

# discount women's ugg elsey boots 5596 sales online

Requesting Gravatar...
YS0226A2 If I were a boy again, I would ractice perseverance more often, and never give up a thing because it was ugg australia boots or inconvenient. If we want light, we must conquer darkness. Perseverance can sometimes equal genius cheap ugg boots in its results. “There are only two creatures,” syas a proverb, “who can surmount the pyramids—the eagle and the snail.” If I were a uggs sale boy again, I would school myself into a habit of http://www.topsnowboots.com/ attention; I would let nothing come between me and the subject in hand. I would remember that a good skater never tries to skate in two ugg cardy boots directions at once. The habit of attention becomes part of our life, if we begain early enough. I often hear cheap gucci shoes grown up people say “ I could not fix my attention on the sermon or ugg coquette book, although I wished to do so” , and the reason is, the habit was not formed in youth.
Left by cheap ugg upside boots 5163 on Feb 25, 2010 3:37 PM

# discount Women's ugg adirondack boots II sales online

Requesting Gravatar...
YS0226A3 Hold fast to dreams.For if dreams
ie. Life is a broken-winged bird,That ugg australia boots can never fly.Hold fast to dreams. For when dreams go,Life is a barren ugg tall boots field, Frozen only with snow !You never know until you try; And you never try unless you really try ugg cardy boot. You give it your best shot; You do the best you can. And if you have done everything http://www.uggsnowbootsbest.com/! In your power,and still,The truth of the uggs argyle knit matter is! That you haven\'t failed at all.When you reach for your dreams,No matter what ugg boots they may be,You grow from the reaching;You learn from the trying;You win from the doing.
Left by cheap ugg classic cardy boots on Feb 25, 2010 3:45 PM

# discount reebok nfl jerseys online sales

Requesting Gravatar...
YS0226A4 A true friend is someone who reaches for your hand and touches your cheap hockey jerseys heart.There's always going to be people that hurt you,so what you have to do keep on trusting nfl jerseys and just be more careful about who sport jerseys you trust next time around.Make youself a better person and know who you are discount nba jerseys before you try and know someone else and expect them to know you mlb jerseys on sale.Remember:Whatever happens,happens for a reason.How many people actually have 8 true http://www.nfljerseymlb.com/friends Hardly anyone I know.But some of us have all right friends and good friends.
Left by cheap adiads nba jerseys sale on Feb 25, 2010 3:53 PM

# discount ugg sienna miller boots 5818 sales online

Requesting Gravatar...
YS0226A9 Unwearied still, lover by lover,They addle in the cold,Companionable ugg australia shoes streams or climb the air;Their hearts have not grown old;ugg coquette Passion or conquest, wander where they will, Attend upon them still ugg adirondack boots. But now they drift on the still water, Mysterious, beautiful; Among what http://www.uggboots4buy.com/ rushes will they build, By what lake’s edge or pool,Delight men’s mbt shoes eyes when I awake some day.To find they have flown uggs classic cardy away?Before there was no reason in the world As now there is I was the bough bent easy by a ugg boots bird I was the vague blue-grazing flock The sleeping and invisible!
Left by cheap women's ugg elsey boots on Feb 25, 2010 3:54 PM

# discount mens air jordan shoes 13 online sales

Requesting Gravatar...
YS0226A10 When you are old and gray and full of sleep,And nodding by the moncler jackets fire, take down this book! And slowly read jordans sheoes , and dream of the soft look,Your eyes had once, and of their cheap nike shoes shadows deep;How many loved your moments of glad grace,And loved your beauty ith nike air force 1 love false or true; But one man loved the pilgrim soul in you,And http://www.onestop-onlineshopping.com/ loved the sorrows of your changing face; And bending down beside the designer clothing glowing bars,Murmur, a little sadly, how love fled.And paced upon the mountains overhead discount air jordan shoes,And hid his face amid a crowd of stars.
Left by cheap nike air max 90 online on Feb 25, 2010 4:02 PM

# discount louis vuitton damier canvas handbags online sales

Requesting Gravatar...
YS0226A11 Surrounding you are angels,They are there to guide your path.If designer purses weaesskn overcomes you,They'll give you strength if you will ask. They are your protection.When discount designer bags on sale life seems too hard to bear,And though you feel alone at ti, The louis vuitton 2009 angels ... they are there.Their faces may be hidden And their voices you might not hear,But they are ALWAYS with you,Through your laughter or your tears.http://www.handbags4buy.com/ They'll walk along beside you,They'll guide your leather handbags steps along the way, They'll comfort you and hold you,Protect you dior handbags night and day.They'll hold to your hand tightly ,They'll not ever let it go,And they'll gently lead you cheap designer handbagsforward,Taking each step very slow.For even as you slumber,They watch closely over you;They are there beside you. In each and every thing you do.
Left by cheap nike air max 90 online on Feb 25, 2010 4:09 PM

# re: Manage SQL Databases

Requesting Gravatar...
well worth the read. thank you very much for taking the time to share with those who are starting on the subject. Greetings
Clasamente Fotbal Statistici Fotbal Rezultate Live Scoruri Live Remi Online
Left by Pariuri Online on Feb 26, 2010 6:12 PM

# re: Manage SQL Databases

Requesting Gravatar...
Thanks for helpful tips!
Left by custom dissertation on Feb 27, 2010 1:37 PM

# re: Manage SQL Databases

Requesting Gravatar...
well worth the read. thank you very much for taking the time to share with those who are starting on the subject. Greetings
Left by auto insurance on Feb 28, 2010 5:05 AM

# re: Manage SQL Databases

Left by discount on Mar 05, 2010 12:24 AM

# re: Manage SQL Databases

Requesting Gravatar...
I am always searching online for articles that can help me. Thank you
Powerpoint Converter
wq
Left by powerpoint on Mar 05, 2010 9:52 PM

# re: Manage SQL Databases

Requesting Gravatar...
With the help of SQL it is very easy to manage bulky data. Thanks
Left by ucvhost on Mar 06, 2010 2:35 AM

# ugg boots

Requesting Gravatar...
nvxk

they are very good and useful!!!
ugg outlet
cheap uggs
nike shoes
wholesale watches
Left by ugg boots on Mar 07, 2010 5:33 PM

# re: Manage SQL Databases

Requesting Gravatar...
F2W It’s hard to find knowledgeable people on this topic, but you sound like you know what you’re talking about! Thanks Don’t stop writing, you’ve given me lots of good info! Youtube to MP4 Converter
Convert PDF to image
Left by powerpoint on Mar 08, 2010 2:10 PM

# re: Manage SQL Databases

Requesting Gravatar...
How can fire trigger in SQL
Best Windows VPS Hosting by ucvhost If you choosing for the best windows vps | cheap vps | windows hosting | Cheap Hosting | Forex Vps hosting service, you need to hunt for those virtual private servers that can run as isolated processes while being part of a Web Server, and provide you complete privacy and root access as the VPS owner. You should also ask for CPU resources, guaranteed bandwidth, memory, and disk space, to make the most of your chosen Windows VPS hosting service. Thanks ucvhost
Left by ucvhost on Mar 10, 2010 2:12 AM

# christian louboutin boots

Requesting Gravatar...
When you are old and gray and full of sleep,And nodding by the moncler jackets fire, take down this book! And slowly read jordans sheoes , and dream of the soft look,Your eyes had once, and of their cheap nike shoes shadows deep;How many loved your moments of glad grace,And loved your beauty ith nike air force 1 love false or true; But one man loved the pilgrim soul in you
Left by christian louboutin boots on Mar 11, 2010 1:01 PM

# re: Manage SQL Databases

Requesting Gravatar...
With the help of SQL it is very easy to manage bulky data.
Left by rolex on Mar 11, 2010 2:57 PM

Your comment:

 (will show your gravatar)
 
Please add 3 and 4 and type the answer here: