Viewing 15 posts - 1,066 through 1,080 (of 5,111 total)
Judging by your other question I suspect this is SQL in an SSRS dataset? SSRS, when using the syntax {Expression} IN (@Parameter) with a multi-value parameter injects the values...
April 26, 2019 at 2:04 pm
Yes, but if you do the following:
- toggle menu on
- maximize screen
You can't then toggle the menu off, as the menu on/off button has disappeared...
Yep, i probably should have...
April 26, 2019 at 8:05 am
Quoting is a big challenge with styling and code. Really, I'd urge you to avoid hitting quote every single time.
Think it would be advantageous if we could preview our...
April 25, 2019 at 3:02 pm
Just wondering here, what was your reasoning for using a WHILE loop here? Personally I would see that you would get better performance by using a Tally Table and/or Calendar...
April 25, 2019 at 10:59 am
Instead of 112 you need 105
You need to change the data type too (to varchar), as the date datatype doesn't have a format attached to it; it's stored...
April 25, 2019 at 8:35 am
Of course, on my laptop, not quite sure how I'd access that.
You probably have to hold the Fn button down while you press another key, what I have to...
April 25, 2019 at 7:58 am
Could be a lot of reasons. How much slower is it on the report server? How complex is the display of the report (lots of objects, formatting?)? Are you simply...
April 24, 2019 at 6:04 pm
You do have to wonder if someone is maybe a little out of their depth trying to use SQL Server, when they post photos (not screenshots) of computer's screen. One...
April 24, 2019 at 4:54 pm
Is this it? Do i not have to worry further?
/Facepalm
Please; screenshots, not photos. ??
April 24, 2019 at 4:50 pm
Got to love a photograph of a screen. As an FYI there is a Screenshot button on your keyboard, it's normally located on the right hand side, above the Insert...
April 24, 2019 at 3:59 pm
Then change it to a DISTINCT count and return the value of W.id instead of 1:
SELECT C.prefix,
COUNT(DISTINCT CASE WHEN CONVERT(char(6),...
April 24, 2019 at 9:49 am
Yeah, it's time. We've debated about the thread name taking you there, but that's not what many people want. Plenty see something and want to read through the thread....
April 23, 2019 at 5:15 pm
This may be an unpopular opinion, but I feel that this is more of a user training issue than a forum software issue. If the end user uses the...
April 23, 2019 at 5:09 pm
Just in case Price could have the value NULL , you may need to do therefore do:
SELECT * --You should probably list the columns you actually need...
April 23, 2019 at 5:04 pm
You can't database permissions at server level, no. sysadmin is the only real "exception" to that rule, but they still end up effectively being mapped the to db owner.
Do these...
April 23, 2019 at 4:06 pm
Viewing 15 posts - 1,066 through 1,080 (of 5,111 total)