Viewing 15 posts - 1,456 through 1,470 (of 4,820 total)
April 24, 2018 at 6:26 am
April 24, 2018 at 6:15 am
Franklly, all the effort to play the games with PrepareStatement just doesn't make much sense to me, when you could just initiate a connection and execute a stored procedure. The...
April 23, 2018 at 2:21 pm
Here's an idea query that you should be able to adapt: IF OBJECT_ID(N'tempdb..#t') IS NOT NULL
BEGIN
DROP TABLE #t;
END;
GO
CREATE TABLE #t (
BeneficiaryID varchar(10),
EligYear...
April 23, 2018 at 2:01 pm
Sounds like a "gaps and islands" type of problem. However, I think you're going to find a problem with your very first CTE. If you take a MIN value for...
April 23, 2018 at 12:27 pm
briancampbellmcad - Friday, April 20, 2018 1:28 PMThanks... that makes sense and works!
Your welcome. Enjoy! 🙂
April 20, 2018 at 1:40 pm
April 20, 2018 at 1:34 pm
I Have a report in ssrs 2012, I use Visual studio data tools...
April 20, 2018 at 12:17 pm
April 20, 2018 at 12:13 pm
CPiacente - Thursday, April 12, 2018 1:49 PM
Heck, even your POST didn't show up.... :hehe::hehe::hehe:
April 20, 2018 at 12:04 pm
Need a LOT more detail... What type is your parameter? What data type does your query or stored procedure expect? Does the query/stored procedure filter data based on that parameter? ...
April 20, 2018 at 11:55 am
I have SSRS report it has Two parameters string parameters (text boxes) 1.SearchByFirstName, 2.SearchByLastName
how to...
April 20, 2018 at 11:51 am
April 20, 2018 at 11:18 am
Viewing 15 posts - 1,456 through 1,470 (of 4,820 total)