Skip to content

Commit d242991

Browse files
author
Ivan Vakhrushev
committed
Eng version
1 parent b25ee3b commit d242991

File tree

3 files changed

+5
-3
lines changed

3 files changed

+5
-3
lines changed

.gitignore

+1
Original file line numberDiff line numberDiff line change
@@ -10,3 +10,4 @@
1010
/running_pg_cluster_in_docker/1. Hello Postgres cluster/pg_0_data/
1111
/running_pg_cluster_in_docker/1. Hello Postgres cluster/pg_1_data/
1212
/running_pg_cluster_in_docker/1. Hello Postgres cluster/pg_2_data/
13+
/useful-sql-scripts.iml

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
# useful-sql-scripts
2-
A set of useful SQL scripts
2+
A set of useful SQL scripts (mostly for PostgreSQL)

useful_commands/kill_process.md

+3-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
# System Administration Functions
2-
[Doc](https://postgrespro.ru/docs/postgrespro/10/functions-admin)
2+
[Doc ENG](https://www.postgresql.org/docs/current/functions-admin.html)
3+
[Doc RUS](https://postgrespro.ru/docs/postgresql/15/functions-admin)
34

45
## Option 1
56
```
@@ -23,7 +24,7 @@ BEGIN
2324
END$$;
2425
```
2526

26-
## Зависшие запросы
27+
## Hung requests (Зависшие запросы)
2728
```
2829
select (now() - xact_start)::time as xact_age,
2930
(now() - query_start)::time as query_age,

0 commit comments

Comments
 (0)