Viewing 15 posts - 826 through 840 (of 13,841 total)
WOW, that's awesome! Do you, or anyone else, know of a similar tool to strip the modules out of an Access MDB file?
I've never used it and therefore don't...
August 29, 2023 at 2:13 pm
Dead right about Power BI and source control. It feels like MS never anticipated that Power BI reports would need to be subject to source control.
There are third-party apps out...
August 28, 2023 at 3:59 pm
I am thinking it is not firewall related only because you said other files upload no problem, ...
Solid logic.
I had not realised until now that it was possible to...
August 24, 2023 at 2:46 pm
Are you able to (safely) disable any firewall on the SSRS server and try again?
August 24, 2023 at 1:30 pm
Your device name column must contain some strings which are not in the format
<make>_<name>_<date>_<time> <am or pm>
My code will error unless there are two or more underscores in the device...
August 23, 2023 at 4:42 pm
Does this work for you? Not quite what you asked for, but maybe even an improvement.
SELECT DeviceName = SUBSTRING (t.devicename, 1, c2.p2 - 1)
...
August 23, 2023 at 4:32 pm
Please provide your test data in consumable form (ie, with CREATE TABLE / INSERT statements), so that we can paste into SSMS and then help you with your code.
August 23, 2023 at 3:46 pm
I vote for using the splitter. For some reason, I'd forgotten that even existed when I posted earlier.
August 23, 2023 at 2:44 pm
Good morning, I don't understand what's going on in my database all tables that have an auto-increment ID will stop auto-incrementing. and I have a message that the code...
August 23, 2023 at 12:00 pm
Here is a possibility.
You could so it all in a single (rather lengthy) expression, but I broke it out to help you understand how I did it.
Please provide consumable test...
August 23, 2023 at 8:17 am
This, maybe?
UPDATE T
SET ACTIVE = IIF(S.user IS NULL, 'N', 'Y')
FROM TARGET T
LEFT JOIN Stage S
ON...
August 22, 2023 at 2:47 pm
Is there a covering index on the table being added?
Try running the proc outside of the report & examining the before and after execution plans. That should give you some...
August 22, 2023 at 9:41 am
--
With validation in the procedure that SortColumnName is actually a valid column name
I thought about this too. But this validation needs to be written carefully, also to avoid the...
August 18, 2023 at 4:27 pm
It's a bit hacky and not as user-friendly, but if you were to create two arguments as follows
@SortColumnCode TINYINT
@SortOrder BIT = 0
and then decode the SortColumnCode number to a column...
August 18, 2023 at 1:32 pm
Maybe you could switch the logic around a bit?
DECLARE @tocheck INTEGER;
SET @tocheck =
(
SELECT tocheck FROM #a
);
DROP TABLE IF EXISTS #part;
CREATE TABLE #part(Col1, ...,...
August 18, 2023 at 1:23 pm
Viewing 15 posts - 826 through 840 (of 13,841 total)