Viewing 15 posts - 691 through 705 (of 6,678 total)
One of the reasons I used CTEs is my understanding that they are cached so they are not re-calculated each time they used. Is there a way to tell...
December 25, 2021 at 4:38 pm
the issue is not the sql itself but the whole combination - your system is likely constrained in memory and was unable to produce a plan for the full...
December 24, 2021 at 3:29 pm
In your total columns - you are referencing the dataset column, which totals across the full dataset. Try referencing the text box name instead of the dataset column.
December 24, 2021 at 2:43 pm
Can you run SELECT @@version in a query window connected to that instance? Either you are running SQL Server Express or you do not have permissions to the agent.
December 20, 2021 at 6:51 pm
You can remove tbl1 from the query and use some other check to exclude the rows - for example, use IN or EXISTS. You could add one or more columns...
December 19, 2021 at 4:09 pm
The error is clear - you need at least 1 column that is not from the outer reference - that is, at least one column from [tbl1] in the group...
December 18, 2021 at 4:46 pm
Looking at your pictures - you are not using the Integration Services Catalog. I would recommend that you setup and configure the catalog and modify your packages to project deployment...
December 18, 2021 at 4:26 pm
That is a standard type of schedule in SQL Server agent - what issue are you having setting it up?
December 17, 2021 at 8:15 pm
I think you have been around enough to know how to post code using the insert/edit code sample button. It would make it much easier for people to review the...
December 17, 2021 at 8:13 pm
I would recommend the proxy account as the best solution. If you modify SQL Server Agent to run as a domain account (actually, that should be setup and configured with...
December 16, 2021 at 6:28 pm
Wouldn't that be related to parameter sniffing in the scenario I gave vs function in a WHERE clause in the OP? And if so, the performance could tank...
December 15, 2021 at 10:14 pm
Can you identify each service account - and where that service account is being used? If the service account is a proxy account - it will be defined in the...
December 15, 2021 at 10:05 pm
It's always been interesting to me how much time and effort is spent on how to identify the "same time period" for the previous year as the current year. ...
December 15, 2021 at 9:49 pm
You can also use this site: https://www.brentozar.com/pastetheplan/
If you use the above, posting the code here would also be a good idea - even if the code is included in the...
December 15, 2021 at 2:59 pm
Unless there is a requirement to scale-out your SSRS deployment - then I would not recommend hosting the databases on a separate instance of SQL Server. Just install both the...
December 13, 2021 at 9:39 pm
Viewing 15 posts - 691 through 705 (of 6,678 total)