Skip to content

Update using.mdx #6713

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 1 commit into
base: develop
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions advocacy_docs/pg_extensions/sqlprofiler/using.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ sp_activate(
Start a new trace named 'tracefortestuser', for user with OID 0011, on database with OID 134, with a maximum trace log size of 25MB, for queries that run at least 10 seconds, up to 30 minutes:

```sql
SELECT sp_activate(tracefortestuser,0011,134,25,10000,30);
SELECT sp_activate('tracefortestuser','0011','134',25,10000,'30 minutes');
```


Expand Down Expand Up @@ -236,4 +236,4 @@ Show the current version of SQL Profiler:

```sql
SELECT sp_profiler_version();
```
```