Viewing 15 posts - 601 through 615 (of 13,877 total)
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
I've had a quick look in the documentation and can't see anything that suggests you cannot create a linked server in SQL Server Express. Have you tried? What happened when...
February 18, 2024 at 8:58 pm
As the error message suggests, the JSON is invalid. You have three open braces and only two closing braces.
February 18, 2024 at 2:42 pm
Your temp table struct is unpleasantly denormalised – perhaps by design, but I suggest you have a rethink about it, because this is very easily done with normalised data, as...
February 16, 2024 at 5:16 pm
It is possible that your e-mail provider has started enforcing TLS 1.2 for e-mail traffic and that this has caused the issue.
February 16, 2024 at 3:57 pm
Scott's advice is solid. I suggest you compare execution times between the solutions offered and then you'll see why.
February 16, 2024 at 3:53 pm
Is this something which used to work and has started failing, or has it never worked?
February 15, 2024 at 6:28 pm
Viewing 15 posts - 601 through 615 (of 13,877 total)