Viewing 15 posts - 1 through 15 (of 158 total)
An alternate way -
You can create what I'd call a "procedure execution tracker" - either as a declared string variable or stored in a database table - to monitor which...
July 1, 2025 at 4:06 am
I am assuming you are running it on Windows.
-- Firstly take the full backup of the machine.
-- Take the backup of databases, logins, users, sql agent jobs, linked servers etc....
June 8, 2025 at 3:16 pm
One way is to sum up row by row to see if it matches target amount.
DECLARE @TargetDate DATE = '2025-04-02';
DECLARE @TargetAmount DECIMAL(22,6) = 1800.000000;
;
WITH Combinations AS (
...
April 14, 2025 at 11:30 pm
Why do you need a clustered disk? You need a shared location where all the nodes can access files to synchronize themselves.
Check this links:
https://www.sqlservercentral.com/articles/steps-for-installing-alwayson-availability-groups-sql-2019
https://kevinholman.com/2022/09/28/sql-always-on-step-by-step/
https://www.sqlshack.com/configuring-a-sql-server-alwayson-high-availability-group/
April 12, 2025 at 12:30 am
check these links, they might help.
and this one
March 15, 2025 at 5:43 pm
Looks like master database corrupt or not available. If D drive does not exists, then why the error?
Un-install and re-install the SQL Server again.
February 24, 2025 at 6:17 pm
Double check these settings on each node.
Configure MSDTC network settings:Open Component Services (dcomcnfg)
Navigate to Component Services > Computers > My Computer > Distributed Transaction Coordinator
Right-click on "Local DTC" and select...
February 24, 2025 at 5:26 pm
Following is a partial list
sys.dm_exec_requests: Provides information about each request that is executing within SQL Server.
sys.dm_exec_sessions: Contains information about all active user connections and internal tasks.
sys.dm_exec_query_stats: Returns aggregate performance statistics...
September 27, 2024 at 2:44 pm
Add raiserror or print to check which is the last step that your SP executed successfully.
September 23, 2024 at 5:29 pm
check this link if it helps.
September 5, 2024 at 2:40 am
Sometimes it takes some time to sync altered passwords between AD and other servers. Ask your network admin about it.
Also, did you restart the SSRS service after the password change?...
September 2, 2024 at 12:16 am
check this link for granting permission's
August 28, 2024 at 1:20 am
thx emperor100, i ran this and believe it eliminates protocols as the problem? Is that correct?
Yes, that's correct. All the protocols are enabled on this instance.
TCP/IP...
August 28, 2024 at 1:10 am
-- Firewall
Also check which protocols are enabled on the SQL Instance.
August 26, 2024 at 9:15 pm
Viewing 15 posts - 1 through 15 (of 158 total)