Viewing 15 posts - 31 through 45 (of 2,651 total)
if the file is a proper CSV file with the each column value enclosed in double quotes (and inside double quotes proper escaped) then you just need to define the...
June 5, 2025 at 11:02 am
- Your LEFT JOIN will be interpreted as INNER due to right table condition present in WHERE (fs.ValidFrom
the OP sql does NOT have a where clause - its only...
May 20, 2025 at 10:16 pm
https://www.sqlservercentral.com/forums/topic/sustainable-procurement-best-practices-for-esg-driven-supply-chains-4 looks like AI generated with the sole purpose of being an advertising post of the "Zycus " software/company - and those commenting on it look just like bots created...
May 18, 2025 at 9:28 pm
Express is free, but no SSIS/SSRS with this. I don't think there are free replacements for them
I might aim for a VM in the cloud I can shut down....
May 8, 2025 at 8:57 am
import wizard is 32 bit if you execute immediately - if you schedule to run on server it will execute the package on the server in 64bit mode by default.
VS...
May 2, 2025 at 6:53 pm
you need to select it - from your image while it is available, it is not selected hence it won't log
April 28, 2025 at 9:22 am
by using SSIS you need to also worry about the SSIS execution timeout itself on top of the remote server one
and you also have to worry about the serverwide remote...
April 19, 2025 at 6:07 pm
use a "group by" on the string_agg sub query
April 16, 2025 at 4:16 pm
I would change the following
(1 + (COALESCE(Factor,0)/100)) * @PreviousCalculation
to be
(1 + (COALESCE(Factor,0.)/100.)) * @PreviousCalculation -- notice the "dot" on the divide (100.) and on coalesce of factor-
depending on the values...
April 12, 2025 at 12:55 am
PowerQuery source works in SSIS - just needs to be done correctly (which you on your thread about it seem to have done all required EXCEPT 1 very important step...
April 9, 2025 at 4:28 pm
within SSMS
Database ->Storage->Partition Functions
Database ->Storage->Partition Schemes
March 25, 2025 at 3:15 pm
yes you can copy them to another location and process them on a different server.
March 6, 2025 at 2:00 pm
you read them in SQL Server as any other .xel file (or through powershell - google it)
March 6, 2025 at 8:43 am
folders like this should be owned by a group containing the domain administrators - and then these can grant required permissions to local administrators and other accounts as needed
March 5, 2025 at 12:54 am
starting to get annoyed with this user https://www.sqlservercentral.com/forums/user/srinivasdba19
been posting scripts (and not his own for sure) as reply to a whole bunch of threads - some of the scripts are...
March 1, 2025 at 7:58 pm
Viewing 15 posts - 31 through 45 (of 2,651 total)