I have a XML file with all the information of a table column names and types. How do I create that table in SQL Server 2008. Do I need to install Hibernate ? What is this hibernate actually is ? How to install it ?Sample XML \[code\]<?xml version="1.0" encoding="utf-8" ?><hibernate-mapping xmlns="urn:nhibernate-mapping-2.2"><class name="Op" table="op" dynamic-update="true"><id name="Id" column="id"> <generator class="native" /></id><property name="AccountId" column="account_id" not-null="true"/><many-to-one name="AccountProp" column="account_id" class="Account" not-null="true"/><property name="Date" column="date" not-null="true" type="Timestamp"/><joined-subclass name="PayOperation" table="pay_operations"> <key column="operation_id" /> <property name="Amount" column="amount" not-null="true"/>\[/code\]