Saving SQL Column Headers Results

SQL Tips
Saving SQL Column Headers Results Sometimes you can run into problems that tend to take up time and could have been solved in a minute.  One of these strange problems is when you attempt to save a Microsoft SQL query result grid to a CSV file. Using Microsoft SQL Server Management Studio (SSMS) Now most of DBA or Developers tend to use the Microsoft SQL Server Management Studio (SSMS) to do the necessary general SQL work.  As you expected when you execute a query the results grid appears displaying the results.  I as countless others tend to copy the information and save it in an excel spreadsheet to do further analysis.  But there are times you may need to save the information into a CSV file for the purpose of…
Read More

Getting performance statistics for cached stored procedures

SQL Tips
Getting performance statistics for cached stored procedures It is always extremely important to maintain your SQL server to the utmost efficiency.    DBAs review the database structure and whether certain pieces such as stored procedures, triggers, etc. can be tuned even further.  One of the areas that will be discussed are the stored procedure which can be used during any time as well as day.  Dynamic Management Views and Function (DMVs and DMFs) to identify resources used by stored procedures DMVs and DMFs were introduced in SQL Server 2005 and are able to obtain figures only for those stored procedures that have execution plans in the procedure cache.  The SQL Server engine starts gathering information about the performance of a stored procedure the first time that  the plan is placed in the…
Read More

Code Analysis what does it do for your application ?

Computer PC Tips - bits and bytes, Software development Concepts, Software Releases
Code Analysis what does it do for your application ? When developing an application you want to provide the best solution for your clients.  This means you need to evaluate current or possible future defects in your source code.  This is a reality during the development stage and is highly recommend that this is implemented in all cases. Necessary steps to do during the code analysis Identify potential errors and oddities. Identify from the produce warnings on why and how you can remove them. Check your code for coding convention compliance. Team code review. There are numerous packages that can be purchased to do simple to deep analysis.  Some packages are installed with the IDE you are using or are external but all have the similar need.  They have to…
Read More

Look ahead with Embarcadero and Delphi

Software Events
Look ahead with Embarcadero and Delphi Embarcadero is hosting a webinar for customers that are on update subscriptions only concerning the next update as well as the anticipated release of Godzilla which will contain the ability to build Linux server applications with a single code base.   Finally Embarcadero is heading in the right direction by giving a privileged webinar for yearly paying customers.  The webinar will discuss the next update release for Berlin which is release update 2.  The biggest piece is about Godzilla which a lot of developers have been wanting for the past few years. What Berlin Update 2 have ? Windows Desktop Bridge Integration Windows 10 VCL Calendar Control “Quick Edits” IDE enhancement C++ Refactoring and Compiler flags Enhanced - Latest Platform Support Enhanced - VCL and FMX Styles…
Read More

Using Elevate Web Builder Book Review

Book Reviews
Using Elevate Web Builder Book Review 2nd edition by Erick Engelke Erick Engelke has written the first ever book about using the Elevate Web Builder product from Elevate Software. What is Elevate Web Builder ? Elevate Web Builder is a visual rapid application development environment for web applications. It is simple and easy to create beautiful web applications by simply dragging and dropping components on to forms, and then changing their appearance and behaviors as desired.  EWB is written with Delphi Pascal as the driving force allowing software developers to quickly build a web based application using a great software language. Elevate Web Builder Book or on-line manual ? The book simply provides code samples along with a description for the section from using PHP, JavaScript, JSON, etc.  It is a…
Read More