Viewing 15 posts - 1,126 through 1,140 (of 2,654 total)
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
any current SQL Server should be 64 bit, specially if it has SSIS catalog on it - so install that one, and ensure that when you execute the package you...
June 25, 2021 at 7:59 pm
thats the latest version of the driver - you can download it from here https://docs.microsoft.com/en-us/sql/connect/oledb/oledb-driver-for-sql-server?view=sql-server-ver15
June 25, 2021 at 7:13 pm
make sure the powershell version is setting the "Binary" mode for transfer - if not and if the default is not binary it will mess it up.
June 23, 2021 at 4:40 pm
double apologies - way to many here that just expect us to supply them with the links - and I misread your title and didn't confirm the contents.
Unless Paul sees...
June 23, 2021 at 4:37 pm
looks like you need to learn to google. first hit when searching for it https://www.sqlskills.com/help/waits/sleep_bpool_flush/
June 23, 2021 at 6:24 am
Viewing 15 posts - 1,126 through 1,140 (of 2,654 total)