Viewing 15 posts - 556 through 570 (of 13,838 total)
Thank you Phil, I think that will work when I do deploy to the SSISDB.
At the moment, dataverse is constantly being update with a new/deleted/updated columns which is why...
February 21, 2024 at 11:17 am
I think MS is telling us that only certain things are compatible with sequence, and refresh isnt one of them.
You are correct, my apologies!
February 20, 2024 at 9:07 pm
You can avoid all parallelism by using the Sequence command in your JSON and setting maxParallelism to 1.
February 20, 2024 at 7:46 pm
Default, Full, Clear and Recalc are the options I'm seeing on the 2017 Standard Edition I have immediate access to.
February 20, 2024 at 5:07 pm
Assuming you have deployed to SSISDB ...
Use an environment in SSISDB and create a sensitive parameter to contain the secret value.
Configure your SSISDB project to reference the environment and then...
February 20, 2024 at 3:51 pm
You may find this article an interesting read … it is relevant to your question. Not that it solves anything!
https://www.sqlservercentral.com/articles/antipathy-for-entity-attribute-value-data-models
Based on your description, it sounds like you may already...
February 20, 2024 at 11:52 am
HI Jeff
yes I have done that already. But it is something in the application which vendor cannot support.
Are you able to provide more details about this issue? I know...
February 20, 2024 at 11:28 am
DROP TABLE IF EXISTS #SomeData;
CREATE TABLE #SomeData
(
SomeId INT IDENTITY(1, 1)
,SomeText VARCHAR(10)
,CONSTRAINT PK_Nonsense
...
February 20, 2024 at 9:25 am
Is it so difficult for you to ask a question?
Can anyone provide the T-SQL code I need to amend an identity column from INT to BIGINT, please?
I am guessing that...
February 20, 2024 at 9:15 am
That message usually appears when you haven't installed
Microsoft.DataTools.IntegrationServices.exe
after installing VS. However, as this worked for you after updating VS, I'm not sure what's going wrong now.
February 20, 2024 at 9:06 am
Alter table query to change identity column from int to bigint in sql2019 server
What is your question?
February 20, 2024 at 8:47 am
After restoring your 2019 backup, you could try running this tool to get the rest of your data moved back:
https://www.devart.com/dbforge/sql/datacompare/
This is not a recommendation, just a possibility. I have...
February 19, 2024 at 8:17 pm
You can get SSMS to do all of the table-by-table scripting for you, no need for any dread!
February 19, 2024 at 8:08 pm
Linked Server is the specific term you are looking for, I think. Take a look at this link, for example:
February 19, 2024 at 1:45 pm
The error relates to memory (ie, RAM) not disk space. If you Google your error, you will see that people have come up with various ways of addressing it (get...
February 18, 2024 at 9:03 pm
Viewing 15 posts - 556 through 570 (of 13,838 total)