Viewing 15 posts - 1,441 through 1,455 (of 13,838 total)
I used to use the Azure SSIS Integration Runtime, but stopped using it because of some limitations (it was expensive too). It was more than a year ago, so I...
April 15, 2022 at 8:57 am
SSDT apparently now available for VS 2022...
https://docs.microsoft.com/en-us/sql/ssdt/download-sql-server-data-tools-ssdt?view=sql-server-ver15
This thread is about the SSIS/SSAS/SSRS extensions for VS 2022, not SSDT itself. Those extensions do not yet seem to be available. Eg,...
April 15, 2022 at 8:53 am
When I do things like this, I return separate columns for the properties I wish to control (font, bold, colour etc) and then assign those columns to the...
April 15, 2022 at 8:48 am
I was half looking forward to giving this a proper go, as I'm sure it would be good for my own PQ education, but it seems that it's probably not...
April 14, 2022 at 9:03 am
When I do things like this, I return separate columns for the properties I wish to control (font, bold, colour etc) and then assign those columns to the relevant Tablix...
April 14, 2022 at 8:49 am
How does knowing the distance from source allow you to calculate the destination? Wouldn't you also need to know the exact direction?
If you want people to write SQL, please provide...
April 13, 2022 at 7:11 am
I see what you mean about the format of that.
Based on that data, I am struggling to find a unique key for the results. You would think something like
PurchasedAt (DateTime),...
April 12, 2022 at 11:16 am
Can you confirm that you also ran GACUtil to add the assembly (DLL) to the Global Assembly Cache?
April 12, 2022 at 10:42 am
WITH grouped
AS
(SELECT
g.id
, g.Game_Time
, Grp = (ROW_NUMBER() OVER (PARTITION BY g.id ORDER BY...
April 12, 2022 at 10:38 am
I don't know what these look like. Can you perhaps provide an example?
April 10, 2022 at 6:36 am
WHERE (ProductId in (1,2) AND Created_Date < '20220301') OR ProductId NOT IN (1,2)
April 9, 2022 at 6:16 pm
Welcome.
First of all, this is not a subreddit, but a 'proper' Web site!
SQL Server 2012 is well and truly out of date and IMO you should be learning a later...
April 8, 2022 at 11:09 am
Create a variable which contains the entire connection string (not just the file path).
Map that variable to the ServerName property of the connection manager.
At least, that's how I do it.
April 8, 2022 at 8:00 am
Same version of SQL Server on both machines?
April 8, 2022 at 7:34 am
Untested, but I think this is tidier. Converting date to VARCHAR is going to hit performance. Also, I suggest that you never use VARCHAR without specifying its length. Under some...
April 7, 2022 at 7:39 pm
Viewing 15 posts - 1,441 through 1,455 (of 13,838 total)