Viewing 15 posts - 1,396 through 1,410 (of 13,849 total)
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
Doing it this way may help. It assumes that twdatum is a datetime column and that there is a suitable index in place (eg, on (twdatum, asis)).
DECLARE...
May 12, 2022 at 9:14 am
Try changing ELSE 0 to ELSE NULL.
Otherwise you are just counting zeros rather than ones, which explains the behaviour you are seeing.
May 12, 2022 at 7:42 am
@phil parkin this doesn't even run. no errors or anything it just will not execute
Runs fine for me. Maybe now you appreciate that different flavours of SQL have their...
May 11, 2022 at 11:25 pm
Here's another version.
DROP TABLE IF EXISTS #t;
CREATE TABLE #t
(
Part INT NOT NULL
,lowest_cost DECIMAL(19, 6) NOT NULL
,date_received DATE...
May 11, 2022 at 6:00 pm
Viewing 15 posts - 1,396 through 1,410 (of 13,849 total)