Viewing 15 posts - 121 through 135 (of 616 total)
ntuschiev (9/10/2013)
I've read one of the Kimball book's and have some experience with SSIS..
ETL Developer roles is another way to get into MS BI arena.
September 10, 2013 at 3:58 am
Come on.. let's have one massive group hug, even uncle Bill Gates is invited 😛
September 6, 2013 at 8:37 am
Waiting for the pros to offer their solution but this is my attempt:
with cte AS (
select quoteid, requestid, createdat,
ISNULL((select top 1 datediff(dd, b.createdat, a.createdat)
from...
September 5, 2013 at 6:56 am
OnlyOneRJ (9/5/2013)
Customer just want a Project plan on existing environment we have..
and have asked us to come up with do & dont's on DB server..
Like following standards, what...
September 5, 2013 at 5:55 am
Could you please supply the CREATE TABLE statement and some sample data please?
September 5, 2013 at 5:33 am
This is a great read if you have the time:
http://www.sqlservercentral.com/articles/Tally+Table/72993/
The function is below:
Example of how to use:
select Item from [DelimitedSplit8K]('6000, 7000, 600000, 3393043, 274878423, 2837423', ',')
DROP FUNCTION [dbo].[DelimitedSplit8K]
go
CREATE FUNCTION...
September 5, 2013 at 5:25 am
That's not what Koen meant but never mind it appears that you're choosing the name based on descending alphabetical order.
Try the below:
SELECT
A.[ITEMID]
, A.[LabelCode]
,(select top 1 NAME
from...
September 5, 2013 at 4:51 am
djackson 22568 (9/4/2013)
Now if they ever come out with a Google Search certification...
....so true, I'd be shovelling poop for a living if it wasn't for Google :hehe:
p.s.
No disrespect to those...
September 4, 2013 at 10:15 am
GilaMonster (9/4/2013)
Abu Dina (9/4/2013)
You'll still be earning plenty of $$$$$ 😉Really? Why didn't anyone tell me that?
I profusely apologise your almightiness!
No seriously, I empathise but don't let the prawn sandwich...
September 4, 2013 at 9:47 am
They can take away the title but they can't take away your knowledge.
You'll still be earning plenty of $$$$$ 😉
September 4, 2013 at 5:08 am
Sweet.
One thing I should have mentioned is that its best to specify a length when casting/converting to VARCHAR. But I suppose it doesn't matter in your case as you're casting...
September 3, 2013 at 11:48 am
Ryan1 (9/3/2013)
wow guys thank you. I get it! muhahaha
What's funnier is that once you get through this book + plenty of practice, you'll start to see these joins in...
September 3, 2013 at 10:58 am
Select orderid, orderdate, empid, custid,
(Select MAX(O2.orderid)
FROM Sales.Orders AS O2
WHERE O2.orderid < O1.orderid) AS...
September 3, 2013 at 10:38 am
Maybe you need to change the primary column to something like this?
( SELECT [Name] + ',' + [State]
...
September 3, 2013 at 9:46 am
Viewing 15 posts - 121 through 135 (of 616 total)