Viewing 15 posts - 826 through 840 (of 2,458 total)
singhamitpal (4/19/2016)
I’VE have been advised to stay away from the stored procedures meaning the business logic should NOT be stored in stored procedures, except where really really...
April 19, 2016 at 3:20 pm
This is a very interesting subject, one of spent a lot of time looking into and something worth really understanding when dealing with "Ranking" functions. First (in case you run...
April 18, 2016 at 6:22 pm
Also...
order by T.samplePartnerCode
What's the purpose of this other than to make your query slower? If you truly need a presentation ORDER BY let the application do it.
April 18, 2016 at 5:49 pm
doug moore (4/18/2016)
DundasOlapDataProvider > Dundas.Olap.Data.DimensionDescriptor
we moved away from this dundas and moved towards Telerik....
April 18, 2016 at 10:26 am
Well, I got this one wrong. I know that at least one of the Friday shirts has boats on it though...
April 18, 2016 at 10:12 am
Good stuff Jeff!
April 18, 2016 at 8:27 am
les.61 (4/17/2016)
April 17, 2016 at 9:17 pm
You can use NGrams8K for a set-based way of solving this kind of thing.
The function:
CREATE FUNCTION dbo.NGrams8k
(
@string varchar(8000), -- Input string
@N ...
April 17, 2016 at 8:49 pm
This will do the trick (note my comments).
DECLARE @yourTable TABLE (someString varchar(100));
INSERT @yourTable
VALUES ('DDR Return PP12345'),('DDR Resturns PP12356'),('DDR Retunrs PP12367');
SELECT someString,
...
April 17, 2016 at 8:07 pm
[Quote]1. Moving mdf,ldf,tempdb to seperate drives.[/quote]
Yes, you want to do that anyhow but yes, do that.
2. Create 2 server one for transactions and one for reporting ,replicating data to second...
April 17, 2016 at 7:55 pm
I know thread is a little old but this is exactly the kind of thing you could do with a good NGrams8K function. Here's the function:
CREATE FUNCTION dbo.NGrams8k
(
@string...
April 16, 2016 at 11:20 pm
From the looks of your first and last picture - it would appear that SQL Server is not installed. There is a checkbox during the install for "Database engine services"...
(Note...
April 16, 2016 at 10:57 pm
What PB_BI said.
It's also worth noting that you can access SSAS via BIDS or SSDT (depending on the version of SSAS you ate running).
April 16, 2016 at 9:05 pm
Have you tried clicking the drop-down and selecting "<browse for more>" then looked at local servers? If there's nothing in there then there may have been an issue with you...
April 16, 2016 at 8:53 pm
Transactional replication is a viable choice but implementing, maintaining and troubleshooting Replication is not a trivial task. If you go that route with production servers then push subscriptions are the...
April 16, 2016 at 8:46 pm
Viewing 15 posts - 826 through 840 (of 2,458 total)