-
Recent Posts
-
February 2012 M T W T F S S « Apr 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 Archives
Author Archives: Dreamer
SQL Basics : Tutorial 1
SQL Basics: Tutorial 1 SQL (Structured Query Language ) is a database language for querying, storing, manipulating data stored in relational database. Most of the RDBMS (Relational Database Management Systems) use SQL as standard database Language but use different dialects. Following databases uses SQL as standard database language [but use different dialects]. MS SQL Server Microsoft Access MSDE Oracle DB2 Sybase MySQL Postgres Informix Also SQL is not case sensitive. SQL Commands: SQL commands can be divided into 4 categories. Data … More ->
Tomcat server Installation Guide
Tomcat server Installation Guide: How to install Apache Tomcat server as windows service: Install the latest Tomcat server version 7.0 from the below Apache Tomcat official download site, http://tomcat.apache.org/download-70.cgi I have downloaded the windows service installer so that tomcat can be run as windows service. 32-bit/64-bit Windows Service Installer (pgp, md5) If you are using xp, just double click on the .exe and run the application. If the OS version is vista or windows 7, right click on .exe and choose “run … More ->
COBOL Frequently Asked Questions Part 3
101.How many Sections are there in Data Division?. SIX SECTIONS 1.’FILE SECTION’ 2.’WORKING-STORAGE SECTION’ 3.’LOCAL-STORAGE SECTION’ 4.’SCREEN SECTION’ 5.’REPORT SECTION’ 6.’LINKAGE SECTION’ In COBOL II, there are only 4 sections. 1.’FILE SECTION’ 2.’WORKING-STORAGE SECTION’ 3.’LOCAL-STORAGE SECTION’ 4.’LINKAGE SECTION’. 102.How can I tell if a module is being called DYNAMICALLY or STATICALLY? The ONLY way is to look at the output of the linkage editor (IEWL)or the load module itself. If the module is being called DYNAMICALLY then it will not … More ->
COBOL Frequently Asked Questions Part 2
COBOL Frequently Asked Questions Part 2 51. What is LENGTH in COBOL II? LENGTH acts like a special register to tell the length of a group or an elementary item. 52. What is the function of a delimiter in STRING? A delimiter in STRING causes a sending field to be ended and another to be started. 53. What is the function of a delimiter in UNSTRING? A delimiter when encountered in the sending field causes the current receiving field to … More ->
How to enable NTLM in windows using regedit?
Enabling NTLM in windows using regedit a. Create a text file. b. Copy the following entries (in bold) and paste in the text file (it is very important to keep these entries as it is with the blank spaces and line breaks): Windows Registry Editor Version 5.00 [HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\Lsa] “lmcompatibilitylevel”=dword:00000000 [HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\Lsa\MSV1_0] “ntlmminclientsec”=dword:00000000 “ntlmminserversec”=dword:00000000 c. Save the file as ntlm.reg. d. Double click on ntlm.reg and click “Yes” in the dialog box that appears next asking you whether you want to save … More ->