Viewing 15 posts - 76 through 90 (of 13,659 total)
WOW, thank you, Phil, for giving me additional information on PBI vs. SSRS!! Everything you've said is information I've never known. Thank you, again!
A pleasure. Let me know if...
September 29, 2024 at 3:13 pm
Ah yes, there's another thing I should have mentioned! After composing your code, please try running it. Yours fails to run.
The code probably worked perfectly on...
September 29, 2024 at 2:55 pm
There are so many dead-to-me technologies, though as others have said, most live on in some form for some users.
SQL Server Reporting Services (SSRS) is dead to me....
September 29, 2024 at 2:50 pm
Master Data Services. I've had a few goes at that in my time and it rarely ended well.
CD players and all hard-copy music. I stream all my music now.
September 29, 2024 at 9:23 am
There is no conflict.
SSL encryption is configured on the server/host.
When you connect to that server from SSMS, you decide what type of connection encryption to use (optional, mandatory or strict)...
September 29, 2024 at 9:15 am
DROP TABLE IF EXISTS #tblItems;
CREATE TABLE #tblItems (Rownr INT NULL, ItemID int NULL, Status nvarchar(50) NULL , StatusDate smalldatetime NULL)
INSERT INTO #tblItems ( Rownr, ItemID , Status , StatusDate...
September 28, 2024 at 8:50 pm
Can you provide your sample data in consumable format, please? Here is some skeleton code to help you get started.
DROP TABLE IF EXISTS #tblItems;
CREATE TABLE #tblItems (Rownr...
September 28, 2024 at 9:35 am
SELECT WOCode
FROM WorkOrders
WHERE Site = Section AND Section = CompletionDate
I'm fairly certain that this is not what you want, but that is what your post is asking...
September 25, 2024 at 11:21 am
I have a query Select Id, WOCode, Site, Section, CompletionDate from work orders where type = 'BRE'. I want to be able to return list of all WOCode that...
September 25, 2024 at 10:14 am
It would be helpful to know what the higher and lower versions of SQL Server are.
Note that you could use SSIS to move data from database A to database B...
September 24, 2024 at 10:40 am
Sorry, my bad. I've updated the topic thus "there is no error message, but the updates and inserts inside the wrapped script are not executed."
Are there any temp tables...
September 23, 2024 at 5:37 pm
'failing to execute correctly' is not detailed enough for people to help. Please elucidate … is there an error message?
September 23, 2024 at 9:39 am
I think it's actually an en dash, not that it makes any difference to the point you're making!
September 21, 2024 at 8:26 pm
How will anyone or anything be able to read such a file, if everything is jumbled together and the columns are not in fixed positions?
September 18, 2024 at 7:18 pm
You should know how to post consumable data by now, with >5,000 points.
We can't run your code unless you provide supporting DDL. But you should know that too.
September 16, 2024 at 8:20 am
Viewing 15 posts - 76 through 90 (of 13,659 total)