Viewing 15 posts - 2,341 through 2,355 (of 2,645 total)
TripleAxe - this is exactly what I was looking for,...
July 31, 2018 at 5:18 pm
DECLARE @test-2 TABLE
(
EmpName varchar(50),
Deduction MONEY,
YearMonth int
)
DECLARE @CurrentYearMonth INT,
@PreviousYearMonth INT
SELECT @CurrentYearMonth = 201805, @PreviousYearMonth = 201804
INSERT @test-2 Values('John', 259.05, 201803)
INSERT @test-2 Values('John', 325.50, 201804)
INSERT...
July 31, 2018 at 4:38 pm
July 31, 2018 at 4:15 pm
July 31, 2018 at 1:42 pm
July 31, 2018 at 9:52 am
July 31, 2018 at 9:05 am
You can either run the package through the Integration Service Catalog or download the package on the file system and execute it from there. Have you tried testing this package...
July 31, 2018 at 5:45 am
Our dev team is using Entity framework and now all the DB calls are...
July 31, 2018 at 3:47 am
July 30, 2018 at 12:59 pm
July 30, 2018 at 12:45 pm
July 30, 2018 at 12:31 pm
From the error you are getting it sounds like you have the text '@Counter' in your dynamic query text. But the code you have pasted in doesn't have a problem....
July 30, 2018 at 10:11 am
select *
from @table
pivot
(
min(comment)
FOR comment_id IN ([1],[2],[3],[4],[5])
) AS PivotTable;
July 30, 2018 at 6:29 am
Thanks for the reply.
I understood the answers that were mentioned that I thank you...
July 29, 2018 at 7:46 pm
A few years ago someone was moving a database (without doing a backup first) and when they reconnected somehow the log file was elsewhere. This corrupted the mdf file.
To...
July 29, 2018 at 10:20 am
Viewing 15 posts - 2,341 through 2,355 (of 2,645 total)