Skip to content

Instantly share code, notes, and snippets.

@khairulfathi
khairulfathi / resume.json
Last active October 19, 2023 10:18
JSON Resume
{
"basics": {
"name": "Khairul Fathi",
"label": "Data Architect",
"location": "Abu Dhabi, UAE",
"email": "[email protected]",
"phone": "+971 52 837 4364",
"image": "https://imageupload.io/ib/OhL0X6Ag5n4u9RO_1697708950.jpg",
"summary": "Results-driven Data Warehouse and Business Intelligence leader with over 14 years of experience in data architecture, integration, and project management within the financial services and banking sectors. Seeking a challenging role as a Senior Data Modeler or Enterprise Data Architect to leverage my expertise in designing and implementing robust data solutions. \n\nProven track record in directing high-impact projects, including serving as the Data Architect at well-known organizations such as the Central Bank of Malaysia, First Abu Dhabi Bank, and Abu Dhabi Securities Exchange, where I played a pivotal role in a Digital Transformation journey. Known for my ability to drive efficiency, enhance data governance practices, and deliver innovati
@khairulfathi
khairulfathi / orders_summary_opt_view.sql
Created December 20, 2018 02:59
To Optimize `orders_summary_view.sql`
CREATE VIEW `order_summary_opt` AS
SELECT
oo.OrderID as OrderID,
oo.CustomerID as CustomerID,
oo.EmployeeID as EmployeeID,
oo.OrderDate as OrderDate,
oo.RequiredDate as RequiredDate,
oo.ShippedDate as ShippedDate,
oo.ShipVia as ShipVia,
oo.ShipName as ShipName,