Firdaus Archive

Blog pribadi untuk curhat, share tentang script, software, kuliah, project IT dan seputar IT.

Stored Procedure to Insert or Update Header and Details Table in MySQL

If you need to handle multiple detail records for a single header record in your stored procedure, you can modify the procedure to accept a JSON array of detail records. This way, you can pass multiple details in a single call to the stored procedure.### Updated Stored ProcedureHere’s how you can create a stored procedure that accepts multiple...
Selengkapnya

Cara Mengatasi You can't access this shared folder because your organization's security policies di Windows 11/10

Background:Microsoft has been progressively increasing the security measures in Windows, and disabling insecure guest logins is one of those steps. Insecure guest logins can pose a significant security risk because they allow access to network...
Selengkapnya

Cara Crawl / Index Site ke Google

Kunjungi alamat https://search.google.com/search-consoleKlik Menu dibawah ini lalu pilih add properties Lalu isikan alamatnyaLalu verifikasi melalui DNS management add TXT record seperti dibawah iniJika sudah klik verify jika berhasil...
Selengkapnya

MySQL Pelajari Penting

 - Limit ... Offset...- Group_Concat- Self Join (https://www.educba.com/mysql-self-join/)-&nbs...
Selengkapnya

MySQL LAST_INSERT_ID() how it works at multi-users environment

 Untuk mengambil data id yang terakhir di insertkan bisa memakai fungsi berikutLAST_INSERT_ID()LAST_INSERT_ID() gives you the last autogenerated id on the connection you execute it on, it does not return the last insert id globally produced by the MySQL server.sauce : https://stackoverflow.com/questions/5835677/last-insert-id-...
Selengkapnya

Displaying URL parameter values as text in an element on webpage

 source https://stackoverflow.com/questions/71727647/displaying-url-parameter-values-as-text-in-an-element-on-webpage-question-from<!-- example url https://exampleurl.com/?birthdate=22091977&pdflink=yourlink123.pdf--><html>    <body>        <span id="birthdate"></span> </br> <span...
Selengkapnya

MySQL Stored Procedure : Insert Data in Header and Detail within 1 Transaction

This is Generated by ChatGPT 2023-11-01To insert data into a single-row header table and multiple-row detail table using a stored procedure in MySQL, you can follow these steps. In this example, we'll create two tables: header and detail, with a one-to-many relationship, and then create a stored procedure to insert data into both tables.Assuming...
Selengkapnya

Radmin VPN Alternative

ZeroTierFreelanHamachisc https://www.saashub.com/zerotier-one-alternatives https://www.saashub.com/radmin-vpn-alternativ...
Selengkapnya

Log USB insert / Eject Using USBLogView by nirsoft

USBLogView is a small utility that runs in the background and records the details of any USB device that is plugged or unplugged into your system. For every log line created by USBLogView, the following information is displayed: Event Type (Plug/Unplug), Event Time, Device Name, Description, Device Type, Drive Letter (For storage devices),...
Selengkapnya

Visual Studio Code - Removing Lines Containing criteria

This method dont need any Extension1. Ctrl+F to open find.2. Paste your string.3. Alt+Enter to select all of the instances of the string on the page.4. Ctrl+L to broaden the selection to the entire line of each instance on the page.5. Delete/Backspace...
Selengkapnya

[Fix Error] Kode Error 0x0000011b Windows 10 Sharing Printer

Kode error 0x0000011b muncul saat ingin melakukan sharing printer pada windows 10. Error tersebut disebabkan oleh update terbaru windows 10 2021-09 Cumulative Update for Windows 10 Version 21H1 for x64-based Systems (KB5005565).Cara mengatasi problem tersebut yaitu :Buka Windows Registry Editor (regedit)Kemudian arahkan ke HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\PrintKemudian...
Selengkapnya

PowerShell merubah nama file extensi tertentu dengan tambahan tanggal dalam 1 folder

 Contoh diatas adalah file awal saat sebelum di rename, anda bisa menggunakan script dibawah ini untuk menambahkan prefix/suffix pada filenyaGet-ChildItem |Foreach-Object { Rename-Item $_ -NewName ("{0}-{1}{2}" -f $_.LastWriteTime.ToString('yyyyMMdd'),$_.BaseName,$_.Extension) ...
Selengkapnya

Menghapus File Ukuran Besar pada Git History

 Git filter branchFungsi git filter-branch Cara menggunakannya adalah sebagai berikut git filter-branch --force --index-filter \  'git rm --cached --ignore-unmatch lokasi/ke/file.exe' \  --prune-empty --tag-name-filter...
Selengkapnya