Viewing 15 posts - 316 through 330 (of 601 total)
My initial impression was to use the master package too.
Can you clarify this statement? I'm not exactly clear on the issue you encountered.
I thought maybe I could use a...
January 14, 2014 at 7:01 am
If Microsoft deemed it necessary to add the INTERSECT command, then what are its advantages over an INNER JOIN
Imagine that instead of selecting one column from each table you...
January 13, 2014 at 11:21 am
I can think of hundreds of objections to that kind of structure, some based on things that would be a poor fit (distributed authority being potentially problematic for fiduciary...
January 13, 2014 at 8:45 am
Here it is using lag and lead to find the islands:
WITH getlaglead AS (
SELECT
seq,
section,
cat,
seconds,
LAG(cat,1,'N/A') OVER (PARTITION BY SECTION ORDER BY seq) AS prevcat,
LEAD(cat,1,'N/A') OVER (PARTITION BY SECTION ORDER BY...
January 3, 2014 at 2:37 pm
perhaps:
;
WITH IslandMin AS (
SELECT row_number() OVER (ORDER BY section,seq) AS rn,seq,section
FROM testdata t1
WHERE NOT EXISTS (SELECT 1 FROM testdata t2 WHERE t1.seq-1 = t2.seq AND t1.section = t2.section AND t1.cat...
January 3, 2014 at 1:59 pm
Technet article on sp_rename says:
If the object to be renamed is a constraint, object_name must be in the form schema.constraint.
No table name
December 31, 2013 at 1:32 pm
Coozie (12/31/2013)
That's sounds like a great plan, Nevyn. Until they figure out you're not one of the, "can't live without" employees. 🙂
But thats why its so good. ...
December 31, 2013 at 12:35 pm
If you've already got a time dimension it should be be too hard from there.
First, a question, do you include an hour if the start is during that hour (same...
December 31, 2013 at 12:32 pm
Seems risky at a company full of tech nerds. If they see you doing data mining to figure out who is likely to leave, and scratching their itches,...
December 31, 2013 at 12:10 pm
Best Sql memories of the year:
-Getting a job where I actually get to apply some of the things I've learned here
-Going to my first SQL saturday (#209)
-Seeing Cory Stephenson's SSIS...
December 31, 2013 at 11:55 am
However, despite the many people that were awarded MCMs before the termination of that program, I still find large numbers of SQL Server professionals learn the bare minimum they need...
December 31, 2013 at 7:40 am
petr.caslavka (12/30/2013)
December 30, 2013 at 10:18 pm
Yes, you should be able to do == .
December 30, 2013 at 9:51 am
It doesn't work without the subquery because you have nothing to give the min
It doesn't work with the subquery because you take the min exec order over cust_id regardless of...
December 21, 2013 at 11:14 am
Hi nomvula.
You need to set up an expression on your data flow task. it will let you dynamically set the SQL Command for your OLE DB source. ...
December 21, 2013 at 1:25 am
Viewing 15 posts - 316 through 330 (of 601 total)