Viewing 15 posts - 1,381 through 1,395 (of 13,838 total)
I have some ideas – they involve GROUP BY and MAX(). You have nearly 4,000 points and this is simple stuff. What have you tried so far?
May 19, 2022 at 3:09 pm
Please complete the following VALUES section code to give us your test data to work with:
DROP TABLE IF EXISTS #SomeTab;
CREATE TABLE #SomeTab
(
Id INT...
May 19, 2022 at 8:25 am
Not very elegant, but I think that this works:
WITH c1
AS (SELECT *
,Ctr = IIF(conversion_factor IS NULL, 0,...
May 19, 2022 at 7:29 am
Here is that link again: https://www.sqlservercentral.com/articles/forum-etiquette-how-to-post-datacode-on-a-forum-to-get-the-best-help
May 18, 2022 at 5:50 pm
Envreference should be a number, I think. Here is an example from MS:
DTExec /ISSERVER "\SSISDB\folderB\Integration Services Project17\Package.dtsx" /SERVER "." /Envreference 2 /Par "$Project::ProjectParameter(Int32)";1 /Par "Parameter(Int32)";21 /Par "CM.sqlcldb2.SSIS_repro.InitialCatalog";ssisdb...
May 17, 2022 at 2:55 pm
Executing an SSIS package from T-SQL is straightforward, see link.
May 17, 2022 at 1:16 pm
10-15 rules at this point...yes we would like a UI for BEU to make changes to the different rules..
Have any good examples of how to accomplish based on requirements...
May 16, 2022 at 3:05 pm
Maybe you could create a calculated column and put the filter on that.
This is a far better idea than mine!
May 16, 2022 at 10:58 am
I do not think that this is possible. If you check the documentation for filtered indexes (link), you will find the following limitation:
Filtered indexes are defined on one table...
May 16, 2022 at 10:48 am
Can you tell us more about the nature of the 'training platform'? Do you have direct access to a database for this platform?
Also, what do you mean by 'sent to'?...
May 15, 2022 at 4:09 pm
We enabled / created SSISDB in one of our non-prod environments before we discovered we aren't allowed to use SSISDB on our servers (long story, don't ask). Now I'm...
May 13, 2022 at 2:49 pm
Errors which happen as data is loaded into a physical table often result in unhelpful error messages in SSIS.
As a first step, I would try to determine one or more...
May 13, 2022 at 8:24 am
The best-practice way of doing such things is first to create and populate a generic calendar table. This could contain columns such as
Date, Year, Month, Day, Quarter, Week, MonthName, DayName
and...
May 12, 2022 at 1:03 pm
--snip
The database is 1.5 gb will SQL Epress be enough to run the DB quickly?
This is, as I am sure you are aware, also quite heavily dependent on the...
May 12, 2022 at 9:24 am
--snip
The database is 1.5 gb will SQL Epress be enough to run the DB quickly?
This is, as I am sure you are aware, also quite heavily dependent on the...
May 12, 2022 at 9:24 am
Viewing 15 posts - 1,381 through 1,395 (of 13,838 total)