Viewing 15 posts - 61 through 75 (of 158 total)
Instant File Initialization (IFI) is a feature in Microsoft SQL Server that improves the performance of database file creation and growth operations. When SQL Server needs to...
=======================================================================
August 24, 2023 at 6:11 am
Try this:
WITH CTE
AS
(SELECT
emp_id
,product_code
,clock_in
,clock_out
,door_area
,ROW_NUMBER() OVER (PARTITION BY emp_id ORDER BY clock_in) -
ROW_NUMBER() OVER (PARTITION BY emp_id, door_area ORDER BY...
=======================================================================
August 23, 2023 at 10:49 pm
Try this link:
Cannot generate SSPI context when connecting to SQL Server - SQL Server |...
=======================================================================
August 17, 2023 at 9:48 am
check this link:
http://Cannot generate SSPI context when connecting to SQL Server - SQL Server |...
=======================================================================
August 17, 2023 at 9:47 am
Building a new logic may take time plus avoiding certain characters, or keeping a conversion table and when there no resource available, why don't you expand the field itself. Try...
=======================================================================
August 16, 2023 at 2:23 am
Can you put double quotes around the -ServerInstance parameter value similar to other params?
=======================================================================
August 16, 2023 at 1:56 am
For moving the files faster, use your network backbone.
500GB is huge... Is it compressed backup?
=======================================================================
August 10, 2023 at 9:49 pm
You can use SQL Server Integration services (SSIS) and also there are many other 3rd party tools in the market.
Azure data factory, Informatica, Ab Initio, Jitterbit, Mulesoft, BOOMI etc.
=======================================================================
August 7, 2023 at 11:28 am
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 SQL Server....
=======================================================================
July 11, 2023 at 6:41 pm
Viewing 15 posts - 61 through 75 (of 158 total)