Viewing 15 posts - 2,416 through 2,430 (of 2,905 total)
Not sure on the warnings, but it sounds like the objects already exist and you are trying to drop something on top of them.
The error is because on the...
July 13, 2017 at 3:24 pm
When you say DSN, I am assuming this is an ODBC connection? If so, those do not store the password for the credentials. You can verify this by looking at...
July 13, 2017 at 3:18 pm
That changes things (good thinking Gail!).
The instead of trigger would change how the insert is performed.
I imagine you'd want to disable the trigger, do the insert, enable...
July 13, 2017 at 12:07 pm
But somebody else on here may have a better idea
![]()
Any book on...
July 13, 2017 at 12:04 pm
Which part is slow? The loading of Excel into the staging table or merging the staging table into the live table?
You are using SSIS. How much memory does...
July 13, 2017 at 11:38 am
I just ran the above code with minor modifications and it ran without any problems.
The modification I did was to change it from a permanent table to a table...
July 13, 2017 at 11:27 am
I try to own the mistake if it was me who made it and I use that to update our release documents to prevent it from happening in the future...
July 13, 2017 at 9:59 am
This line looks a bit odd to me too:SET @TABLE_NAME = (SELECT...
July 13, 2017 at 9:20 am
I am slightly confused.
I took the code, copy-pasted it into SSMS 2016, connected to a SQL 2016 SP1 instance and ran it. I got a different answer than the...
July 13, 2017 at 8:59 am
As a thought, does this query give you any results: July 12, 2017 at 4:03 pmSELECT *
FROM tblA
WHERE tblA.id NOT IN (SELECT id
FROM tblB)
May actually have a solution for you:
https://support.microsoft.com/en-us/help/3053960/fix-a-system-assertion-in-longrec.inl-1318-occurs-when-you-rebuild-or
I see you posted this in the SQL 2016 section and the above article applies to SQL 2012. I'm guessing...
July 12, 2017 at 3:52 pm
The other thing you can do is go into the SSRS web portal, navigate to the folder that has the reports to remove, change the view type to "list" instead...
July 12, 2017 at 1:56 pm
2 things come to mind:
1 - did you run DBCC CHECKDB to ensure the database is not corrupt?
2 - did you check the SQL Server error log for...
July 12, 2017 at 1:53 pm
Another thing to watch, if you are using an SSIS catalog (might apply to the non-catalog method too), the job doesn't need to reside on the same server as the...
July 12, 2017 at 11:54 am
Adding to what has been said, I am slightly confused as to why you would manage the subscriptions for end users.
I understand if the subscriptions are emails being sent...
July 12, 2017 at 8:31 am
Viewing 15 posts - 2,416 through 2,430 (of 2,905 total)