Viewing 15 posts - 526 through 540 (of 6,486 total)
Disclaimer: I do NOT work for Redgate
Your easiest bet might be to invest in SQL dependency checker (yes - it's from RedGate, the parent company for this very site). ...
April 23, 2015 at 11:31 am
You'd probably want to look at a splitter process. You'd bring the entire line in as a single variable , inspect the 4 characts, and use a conditional split...
April 23, 2015 at 10:57 am
This is not unlike some of the techniques used a few years years back to phyisically segment networks, and not let internal nodes see each other. Another one like...
April 23, 2015 at 10:33 am
Jeff Moden (4/22/2015)
Matt Miller (#4) (4/22/2015)
Jeff Moden (4/22/2015)
grant-665832 (4/22/2015)
April 22, 2015 at 8:43 pm
Jeff Moden (4/22/2015)
grant-665832 (4/22/2015)
I'd do this in a C# CLR. Or in a simple program to generate the sequence and write it to DB table.The code would be straightforward.
Why?...
April 22, 2015 at 5:05 pm
Jeff Moden (4/14/2015)
April 14, 2015 at 10:22 am
John Mitchell-245523 (4/10/2015)
April 10, 2015 at 6:45 am
Assuming you did you could end up with something like this to combine your last order with your average order days:
With ordersCTE as (
SELECT ROW_NUMBER() OVER (
PARTITION...
April 8, 2015 at 10:25 am
Kat - you probably want to look at Dwain's answer just above. You really do NOT need to calculate the # of days between EACH order (as you are...
April 8, 2015 at 10:14 am
Yet Another DBA (4/2/2015)
Gary Varga (4/2/2015)
April 2, 2015 at 9:12 am
It's the nature of the data types you're using. Float point or "approximate" data types handle values differently than "precise" data types.
The fact that one example happens to store...
March 31, 2015 at 11:01 am
jshahan (3/30/2015)
Luis Cazares (3/30/2015)
March 30, 2015 at 1:26 pm
GoofyGuy (3/30/2015)
I ran across a review of a developer's first year at a company. The company is endjin and the poster describes their first year as a "software engineer apprentice,"...
March 30, 2015 at 10:24 am
Tac11 (3/28/2015)
Thank you much Matt!!! Is there any other options?
Depending on what's feasible:
1. considering just restoring the product DB holding that table into your test environment, extract the data...
March 30, 2015 at 8:58 am
Initial Suggestions:
1.don't do it that way at all.
2. certainly don't take the advice of ANYONE on the net and run it on your prod environment without testing it...
March 28, 2015 at 10:00 am
Viewing 15 posts - 526 through 540 (of 6,486 total)