Viewing 15 posts - 46 through 60 (of 2,051 total)
Probably switch to PostGres or start developing again
March 14, 2025 at 10:55 am
Using some crude tracking with SP_DATABASE_TABLE_SIZE. Lately switched to extended events database file changes to identify the culprit or using query story to find the queries just before that happened
March 11, 2025 at 10:00 am
The newer os requires you to use administrative privileges (UAC). Run explorer as administrator
cmd (run as administrator)
explorer (this will be started as administrator)
explore
March 4, 2025 at 11:16 am
4 TB SQL backup may take a long time
Have you looked at backup snapshot technologies? Like Veeam / SAN ...
February 27, 2025 at 11:04 am
Nvidia drivers are under the weather, having an expensive video card to see black screens every so often. Not feeling the burn yet
February 21, 2025 at 5:17 pm
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
Viewing 15 posts - 46 through 60 (of 2,051 total)