Viewing 15 posts - 826 through 840 (of 2,863 total)
I wasn't sure if the Browser service was required for the default instance on port 1433 or not, but I generally start the browser service as soon as I install...
October 26, 2021 at 2:50 pm
As I said multiple times - Firewall. Just because port A is open in the firewall and you can connect to SQL instance B doesn't mean that port C is...
October 25, 2021 at 3:29 pm
First, I think you would likely get better support on a MySQL forum than a SQL Server forum.
Second, my understanding of MySQL is that it keeps the temporary tables in...
October 25, 2021 at 3:26 pm
I think there are multiple approaches to this, but if it was me, I would start by trying to define the problem you are trying to solve rather than starting...
October 25, 2021 at 2:28 pm
Jeff - My GUESS is that it was an implicit conversion due to the division by int. I expect that Length is a CHAR or VARCHAR datatype, but holds FLOAT...
October 21, 2021 at 10:05 pm
To me it sounds like you have an Azure SQL instance, not an Azure SQL Managed Instance.
Did a quick google and found this document from Microsoft:
https://docs.microsoft.com/en-us/azure/azure-sql/database/features-comparison
If you scroll down a...
October 21, 2021 at 9:37 pm
The reason it is not implicit is that there is no hard rule saying the default instance must run on port 1433, and most people change it off of the...
October 21, 2021 at 9:25 pm
I second the "nonwork_days" table, but I would make sure to design the reason code table well.
You would want to make sure that the reason code table has a reason...
October 21, 2021 at 4:21 pm
Could you post the DDL for the tables? Mostly, I am wondering what the datatype on "Length" is. If it is not a numeric data type (numeric, decimal, float, int,...
October 21, 2021 at 2:01 pm
I am not 100% certain on the Access syntax for this, but I see a few potential solutions.
My recommended solution would be to do this as a stored procedure rather...
October 20, 2021 at 5:34 pm
There are other solutions for sure, but they include risk. For example, you can take the database offline and modify it in a hex editor to correct the bad data.
If...
October 20, 2021 at 2:22 pm
A lot of my advice still applies. I would try connecting by the FQDN name of the server as well as the port.
You ruled out DNS because you can RDP,...
October 20, 2021 at 2:19 pm
Can your client machine see the servers? Could be firewall issues (that would be one of my first guesses) or network related. I would try connecting by the full name...
October 19, 2021 at 3:46 pm
To add to what Johan said, I'd also check to make sure your database owner is a valid, enabled user. I've had service broker fail to send messages because my...
October 18, 2021 at 9:58 pm
Did a quick google and came up with this link:
Which suggests turning up the remote execution timeout period at the SQL server side OR hardware/network issues. Since the query runs...
October 18, 2021 at 9:17 pm
Viewing 15 posts - 826 through 840 (of 2,863 total)