var fDesc=new Array();
fDesc[0] = "Exult Professional Edition for SQL Server allows you to shred XML and easily import the data from one or more XML files into an SQL Server database.
Features:
- XML relationships mirrored in the database: XML element structure is mirrored in the database using primary and foreign keys.
- Tables and Columns created: Database tables and columns are automatically created from XML element and attribute information.
- Import XML Feeds: Importing XML feeds from web or FTP sources is real easy. And synchronizing feeds with the latest updates is trivial too.
- Optimized for large files: Large and complex XML files are easily imported without running into large memory requirements.
- Process many files at once: Import data from a single file or hundreds of files at once. Exult for SQL Server is built for handling heavy-duty processing jobs with a minimum of effort.
- Quick & Easy: No need to struggle with XSL stylesheets.
- Batch Processing: Use the included command-line interface to automate your XML data processing jobs.";
function tShowHide(id, show)
{
var s = document.getElementById("desc");
if ((s.innerHTML.length<=212 || show==1) && show!=2)
{
s.innerHTML = fDesc[id];
if (document.getElementById('m1'))
document.getElementById('m1').style.display='none';
if (document.getElementById('m2'))
document.getElementById('m2').style.display='none';
if (document.getElementById('more_txt'))
document.getElementById('more_txt').style.display='inline';
}
else
{
s.innerHTML = '';
}
}