Viewing 15 posts - 31 through 45 (of 158 total)
Go and access filesystem through command prompt and check under program files/program files(x86) if the software is really installed.
Windows core interface will be little different.
=======================================================================
March 12, 2024 at 10:52 pm
When are you using gpg4win, inside the SSIS package or as a different step to encrypt the file?
If the process is inside the package, my assumption, it looks like during ...
=======================================================================
March 8, 2024 at 6:00 am
Grant ssis_admin role to the user and give it a try.
You can find additional details about SSIS DB here:
=======================================================================
March 4, 2024 at 3:36 am
Enable RPC and RPC Out properties of the linked server and ensure that the remote user login and password are correct.
=======================================================================
March 3, 2024 at 3:13 am
Eric:
Check this link if this helps, may be at a granular level:
https://www.mssqltips.com/sqlservertip/3153/managing-ssis-security-with-database-roles/
what happens if you deny EXECUTE OBJECTS?
=======================================================================
February 7, 2024 at 6:20 pm
I am not aware of any setting. check how many transactions are not committed/open or taking long time using the below query? Is tempdb located on faster drive? Based on...
=======================================================================
February 5, 2024 at 8:18 pm
1) Attach a new hard disk or an empty LUN to the server.
2) Take the SQL Backup first (Full, differential and Trans), move the backup files it to a safer...
=======================================================================
February 4, 2024 at 7:44 am
Try this:
SELECT Item_id, sum(qty)
FROM [#TempSOR_mb]
WHERE subitem_id not in (203,299)
group by Item_id
The WHERE clause acts as a filter to exclude subitem_id.
=======================================================================
February 1, 2024 at 10:13 pm
@Stan-
Yes, you can change the package target version so that it works when you deploy to lower versions of SQL Server.
Are you able to connect and deploy the package to...
=======================================================================
January 31, 2024 at 7:21 pm
what is the Target version of your package under properties?
=======================================================================
January 31, 2024 at 6:51 pm
Use LAG or LEAD analytical functions.
https://learn.microsoft.com/en-us/sql/t-sql/functions/lag-transact-sql?view=sql-server-ver16
=======================================================================
January 11, 2024 at 8:07 am
You could confirm this by dumping it to a file instead of to screen from SSMS. If this isn't from SSMS, knowing which tool is being used will help...
=======================================================================
January 10, 2024 at 12:02 am
22 million rows in universe is too big.... and that too related to CLAIMS.
You need to create objects specifically for this request, so that it might pull the rows faster.
--...
=======================================================================
January 4, 2024 at 6:32 pm
Looks like some remnants of previous installation remained in the registry. you may have to repeat the cycle of uninstall and re-install of the products in reverse order first. Some...
=======================================================================
December 19, 2023 at 4:40 pm
For Visual Studio 2019, you will also need to download the extensions for Microsoft Reporting Services Projects and Microsoft RDLC Report Designer.
=======================================================================
December 11, 2023 at 6:42 am
Viewing 15 posts - 31 through 45 (of 158 total)