Viewing 15 posts - 1,096 through 1,110 (of 2,356 total)
Well, a simple google search would have turned up this link:
July 26, 2019 at 3:55 pm
Are your log backups occurring every hour? I would reduce that to 15 minutes. By reducing the time between backups, they should decrease significantly in size, and subsequently applying them...
July 26, 2019 at 1:09 pm
What settings did you choose when you ran the DMA?
July 26, 2019 at 1:04 pm
That works. But, you may see additional errors appear when running the app. The app may have something that tries to modify the database(s), such as shrinking(!) or something else.
That's...
July 26, 2019 at 12:55 pm
Sounds like a firewall issue. Are the firewall rules in place for all of the ports required for clustering, availability groups, etc?
July 25, 2019 at 8:46 pm
One thing. This is not a great design.
I would recommend trying to change the design on these tables. Or, at minimum, create a regular extract of these tables into another...
July 25, 2019 at 8:31 pm
Does this get you started?
SELECT *
FROM test T
CROSS APPLY DelimitedSplit8K(T.name, ';') NM
CROSS APPLY DelimitedSplit8K(T.numbers, ';') NU
WHERE...
July 25, 2019 at 7:01 pm
What's the purpose of the DMA to simply change the compatibility level?
I think OP wants to make sure there won't be any incompatible code...
July 25, 2019 at 6:40 pm
Unless I am missing something, you are only changing the compatibility level of the database?
Why won't this work? What's the purpose of the DMA to simply change the compatibility level?
July 25, 2019 at 4:28 pm
No, your WHERE clause is likely filtering the rows.
Without the actual SQL statement, and some sample data, that's an educated guess.
July 23, 2019 at 2:25 pm
This is not unusual, unfortunately.
A lot of apps require sysadmin during install, so it can create the database, jobs, etc but usually it can be removed once installation is completed.
Are...
July 18, 2019 at 5:12 pm
Hello! I have column in SQL 2012 DB of datatype smallint. Could you please let me know how to convert smallint to date? Here's the example of smallint data...
July 17, 2019 at 4:41 pm
Just out of curiosity, I created semi-valid test of these three sets of code. I took the code and inserted it into a regular table, and used the GO 111...
July 10, 2019 at 4:00 pm
Hi there. I am in agreement with the rest about adding a third node however I am guessing that your reason for suggesting this is down to cost which...
July 9, 2019 at 8:23 pm
It's the law of home ownership, Steve... all 10 minutes jobs take at least 6 hours to complete. 😀
And 5 trips to the hardware store.
July 3, 2019 at 6:04 pm
Viewing 15 posts - 1,096 through 1,110 (of 2,356 total)