Viewing 15 posts - 1,171 through 1,185 (of 2,701 total)
unfortunately and as I said the only way to use it outside SSDT is to have it fully licensed - see https://docs.microsoft.com/en-us/sql/integration-services/integration-services-features-supported-by-the-editions-of-sql-server?view=sql-server-ver15
depending on what you are trying to do you...
July 23, 2021 at 11:19 pm
and be careful with doing it that way. SSIS is a licensed feature of SQL Server so any PC that executes it will require a full license of SQL Server.
SSIS...
July 23, 2021 at 8:16 pm
using just min/max/avg will not help much if you have stragglers - you are better off ranking then on durations and then look at the specific ones that are on...
July 19, 2021 at 11:36 pm
Does not matter what possible options we give you to process from the queue - unless you tells with great detail what you are doing with each row on the...
July 18, 2021 at 8:35 pm
MAX Server memory should never be left at the default - with 128 GB ram and with SSIS running on same server I would give SQL a max of 100-110...
July 15, 2021 at 8:00 am
Since SSIS is not SQL - it isn't the same - and the code is not processed as SQL code. Since the data is in the file -...
July 11, 2021 at 10:48 pm
PowerBI will cache - but if using direct query it will also push the query down to SQL Server - and in this case it will shine if doing aggregations...
July 10, 2021 at 1:18 pm
that's a basic OR statement -
and (invoiceamount = @amount or @amount is null)
July 8, 2021 at 8:05 am
powershell has a quirk - exit status is not the one of the last command executed - been bitten by this a few times.
whatever you do within your scripts you...
July 7, 2021 at 8:01 am
no need for further variables.
just do the conversion in sql
delete from T1 where date_cr between convert(int, ?) and convert(int, ?)
July 4, 2021 at 12:18 pm
We manage SQL Server data in a growing environment where our One of the most popular archiving techniques with data that includes date and can be scaled early...
July 2, 2021 at 10:48 pm
I already gave you a alternative solution - up to you to decide which route you wish to take.
July 1, 2021 at 5:26 pm
it is very likely - look at https://desktop.arcgis.com/en/arcmap/10.3/manage-data/gdbs-in-sql-server/system-tables-sqlserver.htm
looks like this bit "The adds table (a_<registration_id>) maintains information about each inserted or updated record (feature) in a versioned business table and...
July 1, 2021 at 12:33 pm
I assume you aren't going to be running this on a server - " New-Object -ComObject Excel.Application }" - this requires Excel to be installed on the server which is...
June 30, 2021 at 7:35 pm
it has more than 4 properties - but unless you specify -properties * or -properties comma_delimited_list_of_properties it won't "show" them to you.
even for on prem AD I would advise you...
June 25, 2021 at 8:06 pm
Viewing 15 posts - 1,171 through 1,185 (of 2,701 total)