Viewing 15 posts - 91 through 105 (of 149 total)
You can gather statistics using this object sys.dm_db_index_usage_stats
It will provide information about seeks, scans, updates etc.
SELECT
DB_NAME(database_id) AS [Database Name],
...
March 27, 2023 at 4:57 am
In detail explained here in this link.
March 21, 2023 at 3:14 am
where is the output folder located? The domain user which is running the SQL Server Service needs access to that folder. Ask your NS team to provide access...
March 20, 2023 at 5:22 pm
From the error message, looks like you are trying to INCLUDE certain columns in CLUSTERED INDEX. Remember, when you create clustered index, all the columns of a table are automatically...
March 20, 2023 at 5:13 pm
Is this happening when you are trying to connect via listener ? Can you please add the output of select @@servername after connecting thru listener?
March 20, 2023 at 2:57 am
Agree with Drew.
Yes, show us what you tried. I give some additional info., understand how GROUP BY works and when to use it.
March 19, 2023 at 1:08 am
Can you check if the data movement is in operation and AG is functional between Primary and Secondary nodes?
Have your tried running this agent job earlier?
March 19, 2023 at 12:53 am
Would help to see the DDL for the Tables, TVF and the indexes defined with some sample data to reproduce the behavior. If it is not inline then a new...
March 19, 2023 at 12:37 am
Try this:
Go to the source connection, check the text file properties... make sure you have selected the checkbox Unicode.
March 15, 2023 at 5:34 am
You should also upgrade to SSRS 2016.... on the reporting side to support 2016 database.
-- Open the report and check for SQL is correct in the report.
-- Compare the table...
March 13, 2023 at 3:48 am
Link is going back to a topic written in 2012 which is an entirely different.
March 13, 2023 at 3:34 am
You can give these a try:
a) Import Export wizard.
b) Use Excel directly, Connect to the Instance by creating a connection and retrieve the data in itself.
c) Use SSIS.
March 10, 2023 at 11:40 pm
Note: From the data you provided program_id from client_vist cannot be joined with client program because they do not match.
May need some code tweaks... to get the correct program_id code,...
March 10, 2023 at 11:10 pm
Here is another way!!
-- Create a grouping column based on the difference between ID and row number within each usertier
;WITH CTE AS (
SELECT *,
...
March 10, 2023 at 8:29 pm
What are these WT1, WT2...... in the output? Why 15 has to be shown under WT1 for B and not in WT2?
You can use CASE WHEN THEN ELSE END and...
March 7, 2023 at 5:57 am
Viewing 15 posts - 91 through 105 (of 149 total)