devxlogo

March 22, 2018

Greatly Improved Edit Mode and Data Refresh in Updated Devart Excel Add-ins 1.7

Devart has released a new version of Devart Excel Add-ins that allow connecting Excel to cloud and database data, edit this data, and save it back to the data source. The update offers many major improvements like advanced Edit Mode, refined data Refresh options and new cloud app add-ins. Devart team, a recognized vendor of professional database management software for developers and DBAs, has announced the release of Devart Excel Add-ins 1.7. The update allows much more convenient and flexible editing and refreshing cloud and database data, including: 1) Advanced Edit Mode that eliminates a lot of previous limitations. Now a user can freely:     ??? Copy and paste data in the Edit Mode, including pasting multiple rows, and copying data in the same workbook and worksheet with the imported table    ??? Use many Excel editing features, like formulas, scripts, Autofill, etc.     ??? Sort and filter of the table with imported data, hiding and unhiding columns, allows editing data outside of the imported table on the same worksheet, etc.    ??? …and many more.              2) Refresh Improvements that preserve user’s data, entered outside of the table with imported data on the same worksheet, data sorting settings in this table and table styles. Moreover, the new Refresh options allow users:     ??? See the refresh operation progress and cancel it if necessary    ??? Disable confirmation dialog boxes when starting refresh 3) Other Improvements that include the following handy features:     ??? Excel Add-in for Zendesk has supported custom fields for certain Zendesk objects    ??? Excel Add-in for Magento offers a more convenient connection editor for connecting to Magento 2 servers    ??? Excel Add-in for Salesforce now allows connecting to Salesforce SandboxIt???s worth to mention that Devart Excel Add-ins now fully support Windows scaling for high-DPI devices and display progress of commit changes operations.  For more information about improved Devart Excel Add-ins, please visit https://www.devart.com/excel-addins/. About DevartDevart is one of the leading developers of database tools and administration software, ALM solutions, data providers for various database servers, data integration and backup solutions. The company also implements Web and Mobile development projects.  Learn more about Devart at https://www.devart.com.

Introducing brand-new dbForge Studio for PostgreSQL, a powerful IDE for working with PostgreSQL databases

Devart announced the first release of dbForge Studio for PostgreSQL that allows to manage and develop database objects in PostgreSQL. This new IDE offers many robust features like Code Completion, Object Explorer and Data Editor which help users create, develop and execute queries as well as edit and adjust the code to their requirements in a convenient and user-friendly interface. Devart, a Czech software provider of database connectivity solutions and tools for database management and development, announced the first release of dbForge Studio for PostgreSQL. Using this tool,users can view all the required information of PostgreSQL database objects they are interested in. In the first version, dbForge Studio for PostgreSQL offers the following key features: 1) Code Completion enables users to save their time and enhance the code quality while writing SQL queries with the help of numerous helpful functionalities like:    ??? List Members    ??? Parameter Info    ??? Quick Info    ??? Complete Word 2) Object Explorer with expandable objects allows users to navigate through the object tree, find any PostgreSQL objects of interest and perform the following tasks:    ??? Retrieve data from a table to present on a single SQL document    ??? Truncate a table    ??? Select Properties to view specific information on objects 3) Data Editor simplifies the process of editing PostgreSQL table data offering many handy capabilities:    ??? Editing data similar to Google Sheets and MS Excel or in the card view mode    ??? Managing the settings of tables, such as adjusting column width    ??? Setting either paginal or auto-search mode by default    ??? Changing colors and formats of rows and cells using a rich set of fonts and sizes    ??? Providing predefined data type formats so that users can select the most suitable for their needs For more information about dbForge Studio for PostgreSQL, please visit https://www.devart.com/dbforge/postgresql/studio/ About DevartDevart is one of the leading developers of database tools and administration software, ALM solutions, data providers for various database servers, data integration and backup solutions. The company also implements Web and Mobile development projects.  Learn more about Devart at https://www.devart.com.

Print All Table Column Definitions in an Entire Database

The following script can be used to print all column definitions for all the tables in your database. SELECTsys.schemas.name + ‘.’ + sys.objects.name AS TableName,sys.columns.name as ColumnName,CASEWHEN sys.types.name IN (‘char’,’varchar’)