Viewing 12 posts - 1 through 12 (of 12 total)
I am sorry... yes it did work.. I just went back to my Dataset and my columns were there.. I must have been blind.. once adding them to my report...
June 15, 2018 at 12:36 pm
Hi, I thought for other readers, that might need to know if this worked.. No, it did not.. when I put the stored procedure into SSRS, SSRS does not recognize...
June 15, 2018 at 12:33 pm
Please bear with me just a little longer.. I have put all my code into one stored procedure and it creates the temp table with all my wonderful data as...
June 15, 2018 at 10:38 am
I am sorry for the confusion..the above query has an "Insert into "tempTableName" then a statements executes the first query.
Then there is another "Insert into "tempTableName" then there is...
June 15, 2018 at 7:18 am
If OBJECT_ID('#cgILSUTA') IS NOT NULL drop table #cgILSUTA
create Table #cgILSUTA (VendorType varchar(1), FName text, LName text, SSN nvarchar(20), Wages nvarchar(20))
-- This is...
June 14, 2018 at 10:21 am
Select
z.VType as [VType]
,z.FName as [FName]
,z.LName as [LName]
,z.Social_Security_Number as [SSN]
,z.Wage as [Wages]
From (select
m.state as [VendorState]
,CONVERT(VARCHAR(2), GETDATE(), 2) as...
June 14, 2018 at 10:10 am
I noticed when I posted the formatting went away.. I attached a file.
June 14, 2018 at 9:54 am
I am sorry, I have tried lining the code up better. The first query has one record.. I am currently getting the first query to not give me as many...
June 14, 2018 at 9:47 am
this is the second part of the query.. I need these both stuck together to get one report.
the first query creates one record.. this query will create a larger...
June 14, 2018 at 8:40 am
I assumed that I could put the same query I have in SSMS in SSRS. I did change some of the data.
This is to create the table and to...
June 14, 2018 at 8:12 am
Good Morning, I am trying to enter my query into SSRS. It doesn't think anything I put in the query window is valid.. .lol.
Is there a document somewhere or...
June 14, 2018 at 7:39 am
Viewing 12 posts - 1 through 12 (of 12 total)