Posts

Showing posts with the label Net COBOL

Featured Post

SQL Interview Success: Unlocking the Top 5 Frequently Asked Queries

Image
 Here are the five top commonly asked SQL queries in the interviews. These you can expect in Data Analyst, or, Data Engineer interviews. Top SQL Queries for Interviews 01. Joins The commonly asked question pertains to providing two tables, determining the number of rows that will return on various join types, and the resultant. Table1 -------- id ---- 1 1 2 3 Table2 -------- id ---- 1 3 1 NULL Output ------- Inner join --------------- 5 rows will return The result will be: =============== 1  1 1   1 1   1 1    1 3    3 02. Substring and Concat Here, we need to write an SQL query to make the upper case of the first letter and the small case of the remaining letter. Table1 ------ ename ===== raJu venKat kRIshna Solution: ========== SELECT CONCAT(UPPER(SUBSTRING(name, 1, 1)), LOWER(SUBSTRING(name, 2))) AS capitalized_name FROM Table1; 03. Case statement SQL Query ========= SELECT Code1, Code2,      CASE         WHEN Code1 = 'A' AND Code2 = 'AA' THEN "A" | "A

5 Things Mainframe Programmers Must Know About NetCOBOL

Image
NetCOBOL is an open platform COBOL development environment which takes advantage of the features of mainframe COBOL. It is ready for the latest technology and a state-of-the-art environment as well. NetCOBOL is a trademark or registered trademark of Fujitsu Limited. NetCOBOL NetCOBOL It is available in both 32 bit and 64 bit  Net COBOL claims compatibility with other COBOL Compilers like VS COBOL, OS/VS COBOL and Micro Focus COBOL.  Provides a debugger and complete integrated development environment(IDE) with COBOL.  Provides IP tools like Power COBOL (These tools help Developer to build Windows biased GUI Apps) and PowerBsort.  It supports databases like Microsoft SQL Server, Oracle, and Pervasive SQL.  Claims to support native SQL Calls “EXEC SQL” within Net COBOL.  It supports Betrive Files as well.  Support Both Modern IDE (Eclipse Plugins for Linux and VS IDE plug-in for Windows)  Linux Version of Net COBOL also supports JAVA, C, C++, and Python.  Windows Version