Viewing 15 posts - 826 through 840 (of 2,857 total)
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
I am pretty sure that the problem is with that buffer pool size as the error indicated. The error is saying that the connection was closed by the remote host. ...
October 15, 2021 at 8:11 pm
I believe the reason it is skipped is because the next restore step MAY include the steps that the undo phase would have undone. If you use NORECOVERY, SQL is...
October 13, 2021 at 2:38 pm
The master key password is used to decrypt the master key. If you change the password AND you are decrypting it by password (as opposed to decrypting by the service...
October 13, 2021 at 2:01 pm
looking at it, to me it appears that it is slow because you are looking at a LOT of data to review and then update a single row. Mind you...
October 12, 2021 at 9:31 pm
An alternate, but similar, approach would be to add a sequential integer column to the table rather than the row_number approach. This should have better SELECT performance than row_number() at...
October 12, 2021 at 8:35 pm
What I am seeing is it failed validation. If I remember right, failed validation is thrown when metadata changed. So you will need to edit the SSIS package to update...
October 12, 2021 at 7:55 pm
Viewing 15 posts - 826 through 840 (of 2,857 total)