Viewing 15 posts - 196 through 210 (of 5,111 total)
Yep. You need the latest version to work on the latest version. Forwards compatibility is generally not a thing.
Well, SSDT for Visual Studio 2022 is out as well, so...
May 4, 2022 at 2:55 pm
Why are you trying to install SSDT 2017? That won't work with SQL Server 2019.
May 4, 2022 at 2:34 pm
Hi
Main requirement is to show data in Pivot & display Grand Totals of columns. Columns will be dynamic.
Display the results
Thanks
So as mentioned, why not pivot your data in the...
April 29, 2022 at 11:08 am
Hi
It does not show results. It gives message 2 rows affected. I have written execute(@query) also
Thanks
Of course it won't, the data was inserted into a table, not returned to...
April 29, 2022 at 9:12 am
Try this
SET @query
= N'select * into #FinalResult from
(select Name, ' + @cols
+ N' from (select name,quantity,itemname...
April 29, 2022 at 8:08 am
Presumably, then, dtkey
is a foreign key to a Calendar table, so why not JOIN
to said calendar table and then do WHERE CalendarTableDateColumn > ?
?
April 27, 2022 at 1:08 pm
I don't see how the above has any relevance to SQL Server. it feels more like you've posted your homework question into the topic, if i am honest.
What is it...
April 26, 2022 at 4:14 pm
Okay, this is VERY weird. My last post, when I hit submit, errored out with "Are you sure you want to do that?"
And when I hit submit again, it...
April 26, 2022 at 1:12 pm
Honestly, I would create your entire statement on the fly and use conditional aggregation, not the restrictive PIVOT
operator, then you'll find this much easier. Also the syntax SELECT @Variable...
April 26, 2022 at 10:53 am
from or T0
OR
is a reserved keyword, if your table is really called or
then you need to delimit identify it (or better yet, rename it to something...
April 26, 2022 at 9:18 am
For question 2, you likely want a windowed AVG with an ORDER BY clause in the PARTITION BY. Without sample data, or expected results, it's difficult to know.
For question one,...
April 26, 2022 at 9:11 am
Couple of initial questions, why do you INSERT
the rows from your parameter @ezy_SMSNotificationItemDetailsType
into a user defined table variable @SMSDetailTable
? Why not just use the contents of @ezy_SMSNotificationItemDetailsType
? Why...
April 21, 2022 at 1:15 pm
Correction, SSRS for VS2022 is available. There is no VS 2022 release (yet) for SSIS and SSAS; you need to continue to use VS 2019 (which
April 19, 2022 at 2:55 pm
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
SSDT was available since the launch of VS 2022; the SSAS, SSIS and SSRS extensions are not. Since 2016 (iirc) SSDT has simply...
April 15, 2022 at 10:57 am
Is Gail now going by they / them? I only ask because I didn't hear about it and I don't want to misgender Gail.
This is just a habit of...
April 14, 2022 at 5:12 pm
Viewing 15 posts - 196 through 210 (of 5,111 total)