Viewing 15 posts - 2,656 through 2,670 (of 3,507 total)
I was trying to do the latter. Not the size restrictions etc. The idea was to upsize the Access back end to SQL Server (Express) and then use...
February 27, 2015 at 8:48 am
Not enough information. Show us what you tried first.
February 27, 2015 at 7:49 am
Some days, it helps if you think before typing...
you could do it in batches and use a TRY CATCH block for the failure, and write the failed group of records...
February 27, 2015 at 12:08 am
February 26, 2015 at 10:42 pm
Found this article:
http://www.sqlservercentral.com/scripts/LAG/89769/
If you had 2012, you could use LAG or LEAD to look at previous/next records and do math on values between records, but since you can't...
February 26, 2015 at 9:40 pm
Task 2: Use REPLACE. Look it up in Books On Line.
Task 1: Find all records that begin with 'THE '. Play with RIGHT() to strip it off.
...
February 26, 2015 at 8:49 pm
Here's a solution... tried it and it looks like it works:
https://skamie.wordpress.com/2012/05/21/ssrs-format-option-for-milliseconds/
February 26, 2015 at 7:44 pm
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
Viewing 15 posts - 2,656 through 2,670 (of 3,507 total)