Viewing 15 posts - 46 through 60 (of 2,043 total)
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
Can you give some sample data and expected layout
You may want to use a datetable in your dataset so that every day of the months is in your dataset on...
November 19, 2024 at 4:50 pm
Some reasons for avoiding nested views is:
It makes it harder to the optimizer to calculate a good execution plan (work strategy) because there are more possible combinations.
It may hide non-sargable...
November 19, 2024 at 4:38 pm
Oracle isn't the easiest database to learn sql on but they do have an online course Oracle Database 19c: SQL Fundamentals https://learn.oracle.com/ols/home/sql-and-plsql-fundamentals/88387
October 28, 2024 at 4:48 pm
Viewing 15 posts - 46 through 60 (of 2,043 total)