Viewing 15 posts - 16 through 30 (of 100 total)
My advice is: never use SQL server email capability for third party apps. Please use third part app to take care of the emailing capability.
March 1, 2024 at 2:56 pm
The permissions between the Local admin and Domain admin users are not the same.
Domain user profile is different from the Local user admin profile in most cases.
February 28, 2024 at 2:37 pm
You could do something like this:
NSERT INTO @Tmp --> Internal SQL table
EXECUTE('DBCC checkdb ('DBNAME')');
SELECT * FROM @Tmp where field like '%ERROR%'
February 27, 2024 at 2:55 pm
If you got full recovery model, make sure the transaction log backups set up properly. This causes the disk space issues, too.
February 20, 2024 at 2:54 pm
Is this crystal report you are asking about or SSRS?
February 14, 2024 at 3:19 pm
Definitely build a test environment to check/test your solution first.
Please read this web site information:
https://www.sqlshack.com/move-sql-database-files-mdf-ldf-another-location/
February 12, 2024 at 3:27 pm
YOUR TWO BIG QUESTIONS ARE:
1 - how important/useful (for what?) will such storage of Win Event log data in sql server table?
in what situation can it come in handy to...
January 18, 2024 at 3:00 pm
Old article from Paul Randall, but good reading:
https://www.sqlskills.com/blogs/paul/why-you-should-not-shrink-your-data-files/
January 3, 2024 at 5:41 am
Some good comments from the best minds.
January 3, 2024 at 5:13 am
Do you have a Azure VPN resource setup for your VM SQL server or just your Azure VM box?
This could solve your problem.
Please check out this link:
Note:
+ I...
December 26, 2023 at 2:36 am
Makes sense...
Here is a comment: If you have a cloud platform, could you not use DW servers within the cloud with proper firewall rules. This would be a different way...
December 26, 2023 at 1:42 am
Brent Ozar makes good points about SQL 2019 performance issues:
December 22, 2023 at 7:13 am
Why would you use a transactional replication in AG? I see the benefit. However, the replicas would do the same thing. right?
December 22, 2023 at 6:53 am
Few comments here:
Some monitoring tools are good, and some are not so good. So you need to bench-mark these tools before using in a live platform.
SQL memory Min/Max memory may...
December 22, 2023 at 6:38 am
Visual studios provides good help for these issues.
December 21, 2023 at 5:58 am
Viewing 15 posts - 16 through 30 (of 100 total)