Viewing 15 posts - 1,306 through 1,320 (of 1,988 total)
Eric M Russell (8/23/2016)
August 23, 2016 at 8:19 am
Hmm.... kind of an interesting to see MS trying to make platform agnostic tools, I'm wondering how much of the value is lost by not being so closely tied to...
August 22, 2016 at 8:23 am
Have you tried using bcp to extract the data?
You could still set up a powershell wrapper to parse your input file and generate the bcp commands and run them.
August 19, 2016 at 11:48 am
It really depends on the deployment, depending on the components involved tests could be to run a complete system test to just making sure no errors were thrown during migration...
August 19, 2016 at 10:23 am
Eric M Russell (8/18/2016)
August 18, 2016 at 7:59 am
I think there's a huge difference between archiving data and deleting data. Yes that one audit log record out of millions from 10 years ago might mean that it...
August 9, 2016 at 8:57 am
whereisSQL? (8/8/2016)
Luis Cazares (8/8/2016)
Ed Wagner (8/8/2016)
Hugo Kornelis (8/8/2016)
Ed Wagner (8/8/2016)
whereisSQL? (8/8/2016)
Ray K (8/8/2016)
Ed Wagner (8/8/2016)
SwingJazz
Trumpet
Trombone
Seventy-Six
1776
1984
Leap
Quantum
August 8, 2016 at 3:17 pm
GilaMonster (7/27/2016)
Eric M Russell (7/27/2016)
July 27, 2016 at 9:44 am
Phil Parkin (7/26/2016)
ChrisM@Work (7/26/2016)
BrainDonor (7/26/2016)
July 26, 2016 at 7:45 am
I tend to find that if something can't be unit tested easily and effectively it's because of some fundamental design problem. Usually i see this when a developer tries...
July 25, 2016 at 11:18 am
How long do all those individual queries you're using to populate those temp tables take?
July 22, 2016 at 1:34 pm
Think about it like this, they'll likely be more than happy to take your development work and move forward with it without you no reason you can't do the same...
July 22, 2016 at 11:02 am
I stayed at my last job far longer than I should have career wise mostly because I got comfortable there which can be a very dangerous trap. After I'd...
July 22, 2016 at 8:08 am
Should be relatively straight forward.
SELECT refEmail, MAX(LastContactDate), MIN(LastContactDate), DATEDIFF(day, MAX(LastContactDate), MIN(LastContactDate)) FROm trial_contacts GROUP BY refEmail
July 21, 2016 at 9:47 am
So no you can't make a view that was something like
CREATE VIEW MY_VIEW AS(
EXEC sp_order 'ABC'
)
But there are some things you could do depending on what your SP is doing....
July 20, 2016 at 2:41 pm
Viewing 15 posts - 1,306 through 1,320 (of 1,988 total)