var fDesc=new Array();
fDesc[0] = "dbForge Fusion for SQL Server is a powerful Visual Studio plugin. It fully integrates into Microsoft Visual Studio making all database development and administration tasks available from your IDE. Visual Studio 2019 only.
Key features:
- Integration with Visual Studio 2019
- Integration with dotConnect for SQL Server
- Data Analysis
- SQL Connectivity
* Microsoft SQL Server versions from 2000 to 2014, Microsoft SQL Azure and Amazon RDS are supported.
- Data Comparison
*Comparing and synchronizing data in databases of virtually any size
*Comparison of tables, views, and custom queries
*Data synchronization script generation
*Viewing differences on each record of data
*Excluding tables and records from synchronization
*Generating precise comparison reports in HTML and Excel formats
- Data Editor
*Non-synchronous data fetch with possibility to cancel the operation
*Customizable data filters of any level of complexity
*Foreign key lookup editor for easy editing of fields referencing other tables
*Quick building of report, chart, and pivot table directly from data editor
*Large objects (LOB) editor
- Database Explorer
- Database Search
- Exporting and Importing Data
- Object Editors
- Query Builder
- Query Profiler
- Security Manager
- Schema Comparison
*Ability to compare and synchronize SQL Server database schemas
*Synchronization between different server versions
*Ability to generate schema comparison reports
*Schema synchronization script generation
- SQL Editing and Execution
- Smart SQL Server Code Completion
- SQL Formatter
- SQL Code Refactoring
- T-SQL Debugger
- Visual Database Diagram";
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 = '';
}
}