Viewing 15 posts - 2,281 through 2,295 (of 13,874 total)
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
SSIS does not handle this scenario very well without code. The way I would do it is as follows:
December 18, 2020 at 9:38 am
Your problem here is that the underscore character is itself a wildcard in T-SQL, matching any single character. That explains the results you are seeing.
The solution is to ESCAPE the...
December 18, 2020 at 9:33 am
...it states that there are security implications to using it.
Not quite. It mentions 'potential security implications' – and Jeff has described some of those already.
December 18, 2020 at 9:25 am
Viewing 15 posts - 2,281 through 2,295 (of 13,874 total)