Viewing 15 posts - 2,641 through 2,655 (of 3,484 total)
I'm just trying to protect myself from the infamous MDB corruption issues. That and allow for a lot of data... so we'll see. Just don't know how I...
February 26, 2015 at 6:00 pm
oh, sweet! That's handy! So I just have to use Windows Scheduler directly instead of using a job (which probably talks to Windows Scheduler)... Okay.
Thanks!
February 26, 2015 at 5:58 pm
So you have data that's not clean? You might want to look around here for Fuzzy Matching articles. If you have SQL Server Enterprise, you can use it...
February 26, 2015 at 5:19 pm
One of these should do it:
http://www.sqlusa.com/bestpractices/training/scripts/commadelimitedlist/
February 26, 2015 at 3:57 pm
Most if this is trivial once you set up the calculated column/field/whatever you call it in the dataset. Then anywhere you want to show this value, you'd use the...
February 26, 2015 at 12:41 pm
You could set the Fill color of a cell using something like this:
=IIF(Previous(Fields!Company.Value)=Fields!Company.Value,"Red","Transparent")
February 25, 2015 at 9:46 pm
Here's how I did it.
Steps:
1. addd a tablix to your report.
2. Add Company, PurchaseOrder, PurchaseDate fields to the tablix.
3. Right-click the body line (with the lines).
4. Add Group: Parent Group
Group...
February 25, 2015 at 7:19 pm
If you're in your dataset, you'd create a calculated column and use IIF(Parameters!MyParam="9999","ShowThis","Show That") Then just use the calculated value instead of the numeric value. Then you can...
February 25, 2015 at 5:03 pm
ROFL... maybe I need a binary calendar?
February 24, 2015 at 9:55 pm
not near enough information to help. How old is your latest backup? Do you have your transaction logs somewhere? what recovery model are you using?
February 21, 2015 at 1:57 pm
Easiest way is to use a Calendar table and do the math in a stored procedure. Then base the report on that.
February 20, 2015 at 3:49 pm
You tried grouping? Keep at it... that was the right direction.
SELECT ID
, MAX(Lang1) AS Language1
,MAX(Lang2) AS Language2
,Max(Lang3) As language3
,MAX(Lang4) AS Language4
FROM
(SELECT 1001 AS ID, Null as Lang1,'Japanese' as Lang2,Null As...
February 19, 2015 at 11:25 pm
Cool! Thanks for the report.
February 19, 2015 at 3:51 pm
What I found is that multi-valued parameters just plain don't work the way I expected them to. They work fine if you're stuffing them in an IN() clause in...
February 19, 2015 at 1:52 am
Viewing 15 posts - 2,641 through 2,655 (of 3,484 total)