Viewing 15 posts - 1,366 through 1,380 (of 2,905 total)
My recommendation is going to still be get a monitoring tool.
If that is not an option, you are going to need a linked server or SSIS or something in place...
February 24, 2021 at 8:39 pm
If this was my task, I would buy an ERP rather than reinvent the wheel.
If you need to do this strictly in SQL, you would need to know the "max...
February 24, 2021 at 4:55 pm
Might be a dumb question, but does that need to be dynamic SQL?
My thoughts here are to take your last 2 IF statements and have them assign a value to...
February 24, 2021 at 2:01 pm
Pretty sure you are going to need to configure that per-server. The servers don't share any configuration information, so you would need to set that on on a per-database level.
Alternately,...
February 24, 2021 at 1:50 pm
I think that it should work just fine. I have used most versions of VS from 2010 through 2019 to build reports for various versions of SSRS (2008 R2 through...
February 23, 2021 at 7:39 pm
I would expect that to be network related or memory related (experts correct me if I am way out to left field here).
If the network connection on the server is...
February 23, 2021 at 7:20 pm
I would check the things that the error mentioned such as "low disk condition". Do you have free space on the disk and in the database?
Next, I'd be checking the...
February 23, 2021 at 4:59 pm
I'd check the execution plan, not profiler. You may be able to improve performance with more/less/different indexes or some query hints (like forcing a hash match).
Or, another thought, did you...
February 23, 2021 at 4:54 pm
Is the service running on the remote server? The screenshot says "Local" so I wasn't sure...
First thing I'd check is if the remote server has Remote Registry enabled.
If that service...
February 22, 2021 at 10:12 pm
I think the best way to handle this would be DENSE_RANK(). Something along the lines of:
SELECT
[SearchParts]
, [CompanyId]
, DENSE_RANK() OVER (ORDER BY searchparts, companyID) AS [GeneratedID]
...
February 22, 2021 at 10:09 pm
Pretty sure you would get those from your S3 server settings (AWS if I remember right).
Worst case, you should be able to generate new ones without any problems (if I...
February 22, 2021 at 10:00 pm
The likely reason - your certificate isn't issued to the same name as you are using to connect.
For example, SERVERA is not the same name as SERVERA.corp.com but if you...
February 12, 2021 at 2:13 pm
As an alternate solution, you could have an SSIS package that pulls data from server A and pushes it to server B and you MAY be able to use SSIS...
February 10, 2021 at 2:39 pm
As far as I know, you cannot access a "RESTORING" database for reads or writes, and this makes sense.
While a database is in the RESTORING state, SQL is waiting for...
January 26, 2021 at 1:15 pm
NOTE - the below is my opinion; I was not able to find reliable documentation on it, but based on how the settings are set on both the client side...
January 25, 2021 at 4:25 pm
Viewing 15 posts - 1,366 through 1,380 (of 2,905 total)