Viewing 15 posts - 61 through 75 (of 149 total)
If I understand correctly, there is some trace in progress. It could be default trace, try to stop the trace or disable it after bringing the cluster offline. Also check...
August 7, 2023 at 11:20 am
what version of SSRS are you using?
If you are on SQL Server 2022, there is a new feature container availability group that you need to implement which will address all...
August 7, 2023 at 11:13 am
It looks like you are using PaaS. It is better to rollback and restore the DB to an earlier state as it was before this deployment.
Check this URL:
https://www.sqlshack.com/how-to-change-an-azure-sql-database-collation/
Also redeploy...
July 23, 2023 at 1:26 am
Provide more details about the data in the table. Is the data in the table double counting? As an alternative try to fix the ETL process.
July 23, 2023 at 1:14 am
There could be many reasons:
a) Password expires (check account policies or take help from network team)
b) AD Server offline to authenticate the user.
c) Unable to generate Kerberos ticket ... with...
July 18, 2023 at 3:33 am
I experienced the same few weeks ago using the latest SSMS 2019 version.
I had multiple SSMS versions on my machine, I tried the same with SSMS 2016 and it worked.
For the...
July 12, 2023 at 4:55 pm
Using Automated patching, it is possible to apply both SQL Server updates and Windows updates Azure. Automated Patching establishes a maintenance window for an Azure virtual machine running...
July 11, 2023 at 6:41 pm
-- For repeating values you can remove them from the Fact and add it to a dimension/or create a Junk dimension.
-- You can go ahead with two fact tables, one...
July 7, 2023 at 4:27 am
Using ADF, you can create source, sink, and watermark datasets. You can pass a list of source table names as a parameter to the pipeline. The pipeline will then iterate...
July 7, 2023 at 3:32 am
What is your objective or purpose of collecting queries?
If you do not want to use Trace then you may use QUERYSTORE. It is a different animal altogether if that might...
July 6, 2023 at 5:53 pm
Here is another way.
DROP TABLE IF EXISTS #CustomerData;
CREATE TABLE #CustomerData(
[ID] [int] IDENTITY(1,1) NOT NULL,
[CustomerName] [varchar](500) NULL
)
GO
INSERT INTO #CustomerData...
July 5, 2023 at 11:15 pm
Just curious - but if you had to transfer PII/PCI/PHI for a conversion (for example) where the unencrypted data is required by the receiving party, how would you do...
July 5, 2023 at 10:43 am
June 28, 2023 at 1:09 pm
Try this:
Replace * with your required columns
SELECT *
FROM final_output fo
WHERE fo.[G/L Transaction Type Desc] = 'GL Posted'
and fo.[Freight Bill Number] is not null
You can add more conditions...
June 26, 2023 at 8:38 pm
check this link, try this in a test environment first:
https://en.dirceuresende.com/blog/sql-server-entendendo-as-permissoes-e-roles-do-sql-agent-sqlagentuserrole-sqlagentreaderrole-sqlagentoperatorrole/
June 1, 2023 at 1:45 pm
Viewing 15 posts - 61 through 75 (of 149 total)