Viewing 15 posts - 2,266 through 2,280 (of 13,870 total)
What sort of 'updates' do you need to look for? INSERTS, UPDATES and/or DELETES?
Do your tables have DateCreated and DateModified columns? If they do, this exercise probably becomes easier and...
January 3, 2021 at 10:17 am
Any suggestions pls.
Thanks.
Yes. You've been here long enough to know this.
Please provide sample DDL, INSERT statements with test data and desired output based on the data provided.
January 2, 2021 at 10:50 am
Just extend what you are already doing
Select * from
(
SELECT Stuff.Example1
Stuff.Example2
Stuff.Example3
Stuff.Example4
FROM Table1) As FirstSet
INNER JOIN
(
SELECT This.Example5
This.Example6
This.Example7
This.Example8
FROM...
December 31, 2020 at 1:30 pm
SELECT TOP (1) DateTime,
TOC = value
FROM runtime.dbo.History
WHERE TagName = 'WFI_LP01_TOC.PV'
AND DateTime >= '2018-01-01'
AND DateTime <= '2018-01-08'
AND wwRetrievalMode = 'Cyclic'
ORDER BY value desc
December 30, 2020 at 7:02 pm
So you want the TOC column to show the same value for all the rows within the selected range?
December 30, 2020 at 6:48 pm
Where in the process is the value being set to NULL? The source, somewhere in the data flow, or at the destination? (I suggest you use a Data Viewer if...
December 29, 2020 at 12:03 pm
In our project, we use this tool to frequently promote SSIS project builds from DEV ->TEST and further environments.
Hence, it would be a bit challenging to migrate the historical...
December 28, 2020 at 3:26 pm
Interesting, I had no idea that this tool even existed!
Does it also migrate the run history? (That is, the information displayed on the All Executions report.) If migrating from one...
December 28, 2020 at 8:50 am
I'm the guy that coined the phrase.
And then spent hours creating an exploding RBAR GIF, I seem to remember!
December 23, 2020 at 8:36 pm
Hello Brain, I guess I was not clear enough before....
I know he's clever, but still probably prefers to be called Brian 🙂
December 23, 2020 at 9:42 am
I presume you've got a lot of this to do & you want to build an automated way of doing it.
The way I've approached tasks like this in the past...
December 22, 2020 at 2:52 pm
The problem (as far as I can see), is knowing the value of PK_POSTE so that you can INSERT the FK rows in Params_Poste, is that right?
If so, SCOPE_IDENTITY()...
December 21, 2020 at 9:10 am
the primary key will be generated automatically when inserting new data
and then i will use this id as fk of the other table to insert the rest of data
The...
December 21, 2020 at 8:41 am
It looks to me as though this statement
INSERT INTO Postes (NAME_POSTE)
VALUES (@NamePoste)
will fail, because you have not provided a value for PK_POSTE.
December 21, 2020 at 8:14 am
QUESTION: why do some queries work on older Compatibility level than the new? i thought microsoft made the Cardinality Estimator better in the new 2012+ versions? or maybe an update...
December 21, 2020 at 8:00 am
Viewing 15 posts - 2,266 through 2,280 (of 13,870 total)