Viewing 15 posts - 1,546 through 1,560 (of 3,482 total)
you could put all the steps in a single stored procedure.
-- check for existence of record in destination table using the parameter values you pass into stored procedure.
If...
May 7, 2017 at 10:37 pm
SELECT id, ClockIn AS EventTime, 'IN' AS Event
FROM
(SELECT 1 AS id, 1234 AS ClockIn, 2345 AS Clockout) a
UNION ALL
SELECT id, ClockOut AS EventTime, 'OUT'...
May 7, 2017 at 9:50 pm
Here's a YouTube tutorial on data-driven subscriptions in SSRS 2014... He's using Dynamics CRM (I think)... it's SQL Server database under the covers.
and then here is...
May 6, 2017 at 1:40 am
That's the most non-sensical reason for using a different function I've ever heard. If FLOOR does what you need it to do, then use it. If you need a decimal...
May 4, 2017 at 6:49 pm
ORDER BY ZipCode, CustomerName
ORDER BY is in ascending order unless you specify otherwise
ORDER BY CustomerName DESC
May 1, 2017 at 10:49 pm
Okay, I think I worked this out. Since a BIT column stores either 1 or 0, I filtered the dataset by setting the Filter property of the report to this:
April 29, 2017 at 9:09 pm
The easiest way of doing this is to make the parameter optional. If nothing is selected, then the report doesn't get filtered (Same as "ALL"/"BOTH")
April 29, 2017 at 5:22 pm
You really need to read about NOLOCK and what it really does. Here's a quick article by Denny Cherry, SQL Server MVP, former MCM.
It's not what you...
April 29, 2017 at 12:49 pm
Uh oh, one of those "Reading Is Fundamental" things... Off to go read a little... Thanks!
April 27, 2017 at 8:17 pm
Who in the world ever inserts graphs and charts into PowerPoint? I mean, that's just plain weird!
Took long enough! And I still can't do it with 2016 Desktop.
April 25, 2017 at 10:33 am
At least now I know I'm on the right track... next thing is to work my way through Devin Knight's mapping of SQL Server to SSIS data types. The good...
April 24, 2017 at 3:40 pm
Got it to work finally. Had to insert a Data Conversion task in between the Source and Destination. This is going to be a long process, I think, but I...
April 24, 2017 at 2:41 pm
Sue,
thanks for that. ACE.OLEDB.12.0 is listed. Can i use it with Access and Excel 2016?
April 24, 2017 at 2:30 pm
Viewing 15 posts - 1,546 through 1,560 (of 3,482 total)