Viewing 15 posts - 181 through 195 (of 2,051 total)
At first it would overheat because the connection between the watercooler and its controller got loose. Long live the internet for instructions.
Also had some fun misreading the windows license a...
March 31, 2023 at 3:23 am
The joy of assembling a new pc and it boots
March 30, 2023 at 12:27 pm
Good luck, thanks for posting the createMSDB
March 23, 2023 at 9:34 am
Pretty pre-pandemic in Belgium. Work from home is more tolerated than pre-pandemic (up to 3 days in a week).
Lives returned to normal with only the healthsector wearing masks. The flu...
March 17, 2023 at 12:43 pm
SELECT CompanyB.Value SourceValue, CompanyA.Value PartialMatch
FROM CompanyB
Left join CompanyA
on CompanyA.Value like '%'+CompanyB.Value+'%'
March 15, 2023 at 3:11 pm
Deploy it at a test instance?
You can decompress a dacpac and view it's xml contents https://learn.microsoft.com/en-us/sql/relational-databases/data-tier-applications/unpack-a-dac-package?view=sql-server-ver16
March 14, 2023 at 7:49 am
I don't have experience with sql on linux
What have you tried?
Found an extensive troubleshooting list on stackoverflow https://stackoverflow.com/questions/64876580/sql-server-odbc-tcp-provider-error-code-0x274c
March 10, 2023 at 11:42 am
Take the http-url
replace http with https
leave out the :80 portnotation
https://myserver/Reports should respond
or in your case a named instance https://myserver/RPT01/Reports
March 6, 2023 at 2:21 pm
The logfile is used to keep a record of done / pending tranasctions till the logfile has been backed up. This in order to make it possible to redo all...
February 28, 2023 at 9:28 am
Does it trigger when you start the service and terminate it using taskmanager?
February 23, 2023 at 5:13 pm
Could it be it doesn't get triggered because it never started (due logon mismatch)? Can you test the actions without bat-file? Do they trigger?
What's the security on the bat-file
https://blog.stephencleary.com/2020/06/servicebase-gotcha-recovery-actions.html
February 23, 2023 at 11:21 am
MySQL <> MS SQL Server
Is the query source MySQL ( as per driver mysql.data)
or MSSQL Server?
As Ed B mentioned, there are some differences in syntax
February 21, 2023 at 3:49 pm
Can't reproduce it
DECLARE @source varbinary(4000)=0x0200000022695FA76ADC377F399412C032EFA78DA0E0DA5F2A7E20D880D6465AC72AD152;
SELECT CONVERT(NVARCHAR(100), DECRYPTBYPASSPHRASE('Key',@source)) AS SSN
Results in ABC on different collations
February 21, 2023 at 3:42 pm
Not familiar with partitions, but partitioned views seem interesting to minimize downtime.
https://www.sqlshack.com/sql-server-partitioned-views/
Moving to a new partition with split range https://medium.com/@MadhavanR51/add-new-partition-range-to-the-sql-server-partitioned-table-split-partition-range-60e197c2f73d
February 14, 2023 at 11:22 am
Viewing 15 posts - 181 through 195 (of 2,051 total)