Skip to content

Instantly share code, notes, and snippets.

View MarshalOfficial's full-sized avatar
💻

Reza MarshalOfficial

💻
View GitHub Profile
@MarshalOfficial
MarshalOfficial / mssql_backup.sql
Created December 5, 2022 06:44
backup current db in sql server
create PROCEDURE BackupDB
@path nvarchar(300) = '/var/opt/mssql/data'
AS
BEGIN
declare @time nvarchar(30) = format(getdate(),'yyyyMMdd_HHmmss')
declare @dbName nvarchar(150) = DB_NAME()
declare @sql nvarchar(max)
select @sql = ' BACKUP DATABASE '+@dbName+' TO DISK = '''+@path+'/'+@dbName+'_'+@time+'.bak'' WITH COMPRESSION '
@MarshalOfficial
MarshalOfficial / build-custom-docker-image.Dockerfile
Created September 7, 2022 08:15
build a custom docker image and push to a custom registry
#ِDockerfile content
FROM ubuntu:latest
RUN apt update -y
RUN apt install -y openjdk-11-jdk
RUN apt install -y dotnet6
#build then push to any registry
#> docker build -t dotnet6-openjdk11 .
@MarshalOfficial
MarshalOfficial / sql_server_db_sizes.sql
Created September 7, 2022 04:58
get sql server all dbs size
SELECT [Database Name] = DB_NAME(database_id),
[Type] = CASE WHEN Type_Desc = 'ROWS' THEN 'Data File(s)'
WHEN Type_Desc = 'LOG' THEN 'Log File(s)'
ELSE Type_Desc END,
[Size in MB] = CAST( ((SUM(cast(Size as bigint))* 8) / 1024.0) AS DECIMAL(20,0) )
@MarshalOfficial
MarshalOfficial / trigger_add.sql
Created August 28, 2022 09:27
create trigger to run after insert update delete on a table and call specific function for each row
CREATE TRIGGER user_changes AFTER INSERT OR UPDATE OR DELETE ON public.users FOR EACH ROW EXECUTE PROCEDURE change_trigger();
@MarshalOfficial
MarshalOfficial / changes-history-logging.sql
Created August 26, 2022 17:37
postgresql table changes log history
CREATE SCHEMA logging;
CREATE TABLE logging.table_history (
id serial,
tstamp timestamp DEFAULT now(),
schemaname text,
tabname text,
operation text,
who text DEFAULT current_user,
new_val json,
old_val json
@MarshalOfficial
MarshalOfficial / CopyTableInPostgres.sql
Created August 6, 2022 17:56
copy table data from one db to another db in postgres
1: Create a .pgpass file in the home directory of the account that pg_dump will run as.
hostname:port:database:username:password
chmod 600 ~/.pgpass
2: sudo -u postgres -i
3: pg_dump -a -t table_to_copy source_db | psql target_db
@MarshalOfficial
MarshalOfficial / portproxy.ps1
Created July 25, 2022 05:14
win-wsl-port-proxy poweshell
netsh interface portproxy add v4tov4 listenport=8085 listenaddress=0.0.0.0 connectport=8085 connectaddress=172.30.32.1
@MarshalOfficial
MarshalOfficial / jsonval.sql
Created July 20, 2022 06:06
json value sql server
--select top 10 JSON_QUERY((select [value] from OPENJSON(rabbit_message) where Id=Id),'$.MessageId') AS test,*
--from [dbo].[message_logs] (nolock)
--where 1=1
--select top 10 (select [value] from OPENJSON(rabbit_message)) AS test,*
--from [dbo].[message_logs] (nolock)
--where 1=1
@MarshalOfficial
MarshalOfficial / k6htmloutput.js
Created July 12, 2022 09:36
k6 with html output
import http from 'k6/http';
import {
check
} from 'k6';
import { htmlReport } from "https://raw.githubusercontent.com/benc-uk/k6-reporter/main/dist/bundle.js";
export default function () {
try {
let str = 'https://google.com'
@MarshalOfficial
MarshalOfficial / AtomicLong.cs
Created May 10, 2022 10:44
simple atomic long in c#
public class AtomicLong
{
private long _long;
public long Get()
{
return Interlocked.Read(ref _long);
}
public void LazySet(long newValue)