You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+17Lines changed: 17 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -9,11 +9,26 @@ So it runs on
9
9
It's a fork of [ExpressProfiler](https://github.com/OleksiiKovalov/expressprofiler) for MS-SQL-Server ([actually a fork of a slightly modified version](https://github.com/ststeiger/ExpressProfiler) - working datetime-format for any language). <br />
10
10
I used it to port ExpressProfiler to .NET Core (command-line).
11
11
12
+
12
13
sql_profiler can be used with both Express and non-Express editions of SQL Server 2005/2008/2008r2/2012/2014.<br />
13
14
Installation or administrative rights are not required. <br />
14
15
Trace permission are required for the SQL-user.<br />
15
16
16
17
18
+
**Invocation**
19
+
```bash
20
+
./sql_profiler --server {computername\instance} --username WebAppWebServices --password TOP_SECRET --db "The DB you want to profile";
21
+
```
22
+
23
+
or from the project:
24
+
25
+
```bash
26
+
dotnet run sql_profiler --server {computername\instance} --username WebAppWebServices --password TOP_SECRET --db "The DB you want to profile";
27
+
```
28
+
If you omit the username, it will attempt to connect with integrated security.
0 commit comments