Viewing 15 posts - 1 through 15 (of 2,001 total)
If you like the query results in VS Code below your query
Go to Menu > View > Editor Layout > Flip Layout.
February 13, 2025 at 10:14 am
Aargh, just got used to Azure Data Studio with its easy exports to CSV, JSON, Excel ...
February 12, 2025 at 9:13 am
Also using extended events voor basic monitoring, but the tooling is not easy.
I would also like something that is able to read it without using sys.fn_xe_file_target_read_file in order to offload...
February 11, 2025 at 12:56 pm
Thanks for the replies
February 7, 2025 at 9:45 am
Hey,
Did you set the timeout on the command? It is different than the one of the connection
Dim command As New SqlCommand(query, connection)
command.CommandTimeout=300
command.ExecuteReader()
You may also read
February 6, 2025 at 10:39 am
Does anyone have experience with text search engines https://www.sqlservercentral.com/forums/topic/text-search-emails-and-other-json-items
We're trying to provide a solution to business they can use to detect when an certain email is sent according to their...
February 6, 2025 at 10:02 am
Depending on the update, you may add an index on the field being updated in order that sql server doesn't have to lock the whole table.
update ... where mycol =...
January 17, 2025 at 1:02 pm
If you can figure out what Access doing in the background ( querystore / profiler / ...)
you may be able to optimize the query. Like adding an index on the...
January 17, 2025 at 12:58 pm
You can probably speed the migration up with https://docs.dbatools.io/Start-DbaMigration.html#:~:text=Start-DbaMigration%20consolidates%20most%20of%20the%20migration%20tools%20in,of%20it%20as%20an%20easy%20button.%20It%20migrates%3A
January 15, 2025 at 12:22 pm
(double)
December 30, 2024 at 9:21 am
Download the installation media of sql 2019 developer and startup setup. You may get the option to repair / uninstall it
December 30, 2024 at 9:21 am
Sorry for the delay, got sick
Have you tried tilde processing? https://www.onbarcode.com/qr_code/
section Encoding ISO-8859-1 Chars and ASCII Control Functions in QR Code Barcodes
December 10, 2024 at 10:30 pm
Haven't done it yet. Have you tried \t
that is the tab notator for c#
or CHAR(9)
that is tab for T-SQL
December 5, 2024 at 10:03 am
Have a look at https://www.sqlservercentral.com/forums/topic/microsoft-recommendations-for-update-stats There is a whole discussion why you should not rebuilding / reorganizing indexes unless necessary
November 26, 2024 at 10:54 am
Hello Brandie,
MS Updating statitics
MS When to update:
Normally the default autoupdate will do unless in very specific cases ( you can find non-ms articles about this)
Even then you would...
November 21, 2024 at 4:39 pm
Viewing 15 posts - 1 through 15 (of 2,001 total)