Viewing 15 posts - 1 through 15 (of 30 total)
I'd guess that AppV refers to this : https://docs.microsoft.com/en-us/windows/application-management/app-v/appv-getting-started. Sorry no idea about DB_service or XM_service
April 3, 2022 at 3:51 pm
What have you tried? This is you 171st post so you know what to do
April 3, 2022 at 3:44 pm
It depends on which area you want to study: for example being a database administrator is very different from being a developer. I'd suggest starting from here: https://www.sqlservercentral.com/stairways/stairway-to-t-sql-dml. There...
March 24, 2022 at 12:13 pm
First thought: the report has seven parameters. Are you supplying exactly the same parameters for the report as when you run it in SSMS? I'd assume you are running the...
March 23, 2022 at 8:41 pm
You say "I am able to copy the Stored Procedure into Report Builder " Could you describe how you did that? I would expect to see in the Report Data...
March 23, 2022 at 5:34 pm
You are using two parameters (presumably they have a date data type) and converting them to strings using FormatDateTime: in other words you aren't comparing dates, you are comparing text....
March 23, 2022 at 2:08 pm
You might want to look at Jeff Moden's article on how to post code problems: https://www.sqlservercentral.com/articles/forum-etiquette-how-to-post-datacode-on-a-forum-to-get-the-best-help
Having said that, it looks as if you are using SSRS to crosstab,...
March 21, 2022 at 8:16 pm
I'm not sure if it's me, but if you have the first and last values in a dataset, e.g.:
1
5
16
1
you would be sorting by 1-1, i.e. 0 over the whole set,...
March 21, 2022 at 5:35 pm
I'd suggest you create a column for the back color in the report dataset SQL/stored procedure as a CASE WHEN statement, e.g.;
CASE
WHEN PicturesbeforeFirstSignoutCount <.8 THEN 'Red'
WHEN PicturesbeforeFirstSignoutCount BETWEEN .8 AND...
March 16, 2022 at 7:20 pm
There's not very much to go on but it looks as if you have created a matrix rather than a table - the data is grouped on Actor and thus...
March 4, 2022 at 5:47 pm
Look up SQL Server numerical functions: https://docs.microsoft.com/en-us/sql/t-sql/functions/mathematical-functions-transact-sql?view=sql-server-ver15
March 3, 2022 at 9:12 pm
If you look at the code sample you said didn't work you would find that it couldn't even run. If you provide sample data in create table statements you will...
February 6, 2022 at 3:45 pm
Duplicate post
January 23, 2022 at 10:17 am
Are you saying that the tables have no logical connection to each other or that they do but the keys are not present? If it's the first then do as...
August 27, 2021 at 1:25 pm
This is your 123rd forum topic. Can you write a SELECT query that identifies the parts you want to return - you may want to think about GROUP BY, HAVING,...
August 7, 2021 at 10:04 pm
Viewing 15 posts - 1 through 15 (of 30 total)