Connect to Sql Server FROM JAVA

https://learn.microsoft.com/en-us/sql/connect/jdbc/connection-url-sample?view=sql-server-ver16

import java.sql.Connection;
import java.sql.DriverManager;
import java.sql.ResultSet;
import java.sql.SQLException;
import java.sql.Statement;

public class ConnectURL {
    public static void main(String[] args) {

        // Create a variable for the connection string.
        String connectionUrl = "jdbc:sqlserver://<server>:<port>;encrypt=true;databaseName=AdventureWorks;user=<user>;password=<password>";

        try (Connection con = DriverManager.getConnection(connectionUrl); Statement stmt = con.createStatement();) {
            String SQL = "SELECT TOP 10 * FROM Person.Contact";
            ResultSet rs = stmt.executeQuery(SQL);

            // Iterate through the data in the result set and display it.
            while (rs.next()) {
                System.out.println(rs.getString("FirstName") + " " + rs.getString("LastName"));
            }
        }
        // Handle any errors that may have occurred.
        catch (SQLException e) {
            e.printStackTrace();
        }
    }
}

jOOQ Eamples

For Java Platform:

Ref: https://www.jooq.org/

Oracle: Hierarchical Queries and Advanced Analytics Functions

•Hierarchical Queries

•START WITH

•CONNECT BY PRIOR

•CONNECT BY FOLLOWING

•ORDER by level

Analytics Functions

•Windowing

•PRECEDING, UNBOUNDED_PRECEDING

•ROWS BETWEEN Unbounded Preceding

•CURRENT ROW

•RANGE BETWEEN INTERVAL 30 DAY PRECEDING AND INTERVAL ‘30’ DAY Following

•ROWS BETWENN 1 PRECEDING and 1 FOLLOWING

Other Analytics Functions and Clauses:

•OVER()

•PARTITION OVER

•Over Partition By

•Avg () OVER Partition BY

•RANK()

•DENSE_RANK()

•DENSE_RANK FIRST

•DENSE_RANK LAST

•RANK or DENSE_RANK OVER

•KEEP

•Aggregate by keeping

••KEEP (DENSE_RANK FIRST ORDER BY …)

•KEEP (DENSE_RANK LAST ORDER BY …)

•RANK()

•RANK() OVER

•RANK() OVER PARTITION BY

•DENSE RANK() OVER

•DENSE RANK() OVER PARTITION BY

•PARTITION BY …. ORDER BY

•ROW_NUMBER() OVER (ORDER By …)

•ROWS BETWEEN Unbounded Preceding

•CURRENT ROW

•RANGE BETWEEN INTERVAL 30 DAY PRECEDING AND INTERVAL ‘30’ DAY Following

•ROWS BETWENN 1 PRECEDING and 1 FOLLOWING

oKEEP

–Aggregate by keeping

oDENSE_RANK()

oDENSE_RANK FIRST

oDENSE_RANK LAST

oOver()

oOver Partition By

–Avg () OVER Partition BY

oROW_NUMBER

oRANK()

oDENSE_RANK

oVariations

–RANK() OVER

–RANK() OVER PARTITION BY

–DENSE RANK() OVER

–DENSE RANK() OVER PARTITION BY

–PARTITION BY …. ORDER BY

–(Partition … order by)

PL/SQL Function Syntax in Oracle

REF: https://docs.oracle.com/en/database/oracle/oracle-database/12.2/lnpls/CREATE-FUNCTION-statement.html

Stored Procedure in Oracle

Ref: https://docs.oracle.com/database/121/LNPLS/create_procedure.htm#LNPLS01373

What are some Data Integration Tools?

Tools for data integration, ETL (Extract, Transform, Load), and data management.

1. Apache NiFi

2. Pentaho Data Integration (PDI)

3. Apache Spark

4. Microsoft SQL Server Integration Services (SSIS)

5. Informatica PowerCenter

6. Apache Airflow

7. Matillion

8. Fivetran

9. Stitch

10. Apache Camel

11. Luigi

12. SnapLogic

13. DataStage (IBM)

Ref: Internet

Oracle CASE within SELECT

From: https://docs.oracle.com/cd/B19306_01/server.102/b14200/expressions004.htm

Syntax:

Example:

Write a SQL block that will categorize Customers’ Credit Limit. If the limit is > 5000, show high, when 100 show low otherwise show medium. Utilize CASE statement.

SELECT cust_last_name,
   CASE credit_limit WHEN 100 THEN 'Low'
   WHEN 5000 THEN 'High'
   ELSE 'Medium' END
   FROM customers;

CUST_LAST_NAME       CASECR
-------------------- ------
...
Bogart               Medium
Nolte                Medium
Loren                Medium

Oracle ISOLATION Levels

Isolation => I in ACID

Supported two types:

  • Read Committed
  • Serializable

However, there are other levels of ISOLATION such as:

Read Uncommitted

Repeated READ

Note: in Read Committed, dirty data is locked until committed.

In Repeated Read, A row (being modified) is locked until committed.

In Serializable, A block/dataset/table (being modified) is locked until Serialization Terminated.


TCL/Transaction Control Language Commands

COMMIT

SET AUTOCOMMIT OFF/ON

ROLLBACK

SAVEPOINT

ROLLBACK TO SAVEPOINT

ChatGPT Prompt Engineering Concepts

Provide Context

Provide Delimeters

Use Detailed Instructions

Refactor Prompts

Let ChatGPT ask questions for clarifications

Split complex Tasks

Use Custom Settings (you can keep the context in the custom settings) :

Use multi-modality (voice, image)

Socratic Prompting

Use Dall-E 3

DALL·E 3 is built natively on ChatGPT, which lets you use ChatGPT as a brainstorming partner and refiner of your prompts. Just ask ChatGPT what you want to …” DALL-E: Text to image Model. DallE: ask chat gpt to create image (this may use DALLE). DallE has multi-modality.

Use proper data controls (

“Data Controls offer you the ability to turn off chat history and easily choose whether your conversations will be used to train our models. They also give you the option to export your ChatGPT data and permanently delete your account. You can find Data Controls under the Settings menu in ChatGPT. ” Ref: https://help.openai.com/en/articles/8983077-what-are-the-data-controls-settings

) You can configure Data Controls from Settings.

Delimeters:

“Delimiters are a sequence of characters or symbols that help ChatGPT understand where important places or distinct sections are located in your prompt. They play a crucial role in helping the model to understand your prompt’s structure.Oct 8, 2024″ Ref: https://libguides.uvic.ca/promptdesign/delimiters

  • Socratic prompting: it involves asking and answering questions. This is how it stimulates critical thinking and generate ideas. Ref: Internet

Personas: Tell VhatGPT who you are and then what you want

Visual Studio C#

  • Github CoPilot for Visual Studio: “Copilot Free and Visual Studio 2022 help you generate, refactor, and debug code, identify bugs and resolutions, optimize performance, and get context specific help throughout your coding workflow.” Ref: https://visualstudio.microsoft.com/
  • Visual Studio 2022 Mainstream TBD January 2032″: https://learn.microsoft.com/en-us/visualstudio/productinfo/vs-servicing
  • Visual Studio: “As of February 24, 2025, the latest version of Visual Studio is Visual Studio 2022 version 17.13, released in February 2025.”
  • “As of February 24, 2025, the latest version of .NET is .NET 9.0, released in November 2024.” ChatGPT
    • Features: AI Integration (.Net Aspire), Cross-Platform Improvements, C# 13 Support,
  • .Net 9 Features: https://learn.microsoft.com/en-us/dotnet/core/whats-new/dotnet-9/overview
  • C# web development latest technologies
    • ASP.NET Core (Cross Platform), Blazor (Interactive Web UI), Entity Framework Core (EF Core) (ORM), SignalR (Real time Web Functionality), gRPC (gRPC-Web) (Remote Procedure Call), Docker and Kubernetes with C#, Azure Web Apps and Azure Functions, MediatR (for separation of concerns), Razor Pages (Page Model, Web UI), IdentityServer and OpenID Connect (SSO, oAuth2), Swagger and OpenAPI, Nginx and C# Integration