Viewing 15 posts - 691 through 705 (of 2,458 total)
Argh! The SQL code get messed up for AlphanumericOnly somehow (bring on the contribution preview button 😉 ).
The code is still good, it just looks odd at the...
May 17, 2016 at 11:28 am
Luis Cazares (5/17/2016)
Are we all aware that SQL Server includes the STDEV and VAR functions?Other than the nulls being ignored, it should be easier to use.
I know about them...
May 17, 2016 at 10:44 am
Another way without variables.
SELECT
mean,
ss = SUM(POWER(measurement - mean,2)),
n,
stdDev = SQRT(SUM(POWER(measurement - mean,2)) / (n...
May 16, 2016 at 9:29 pm
Manic Star (5/16/2016)
crookj (5/16/2016)
Hugo Kornelis (5/16/2016)
Revenant (5/16/2016)
HappyGeek (5/16/2016)
Grumpy DBA (5/16/2016)
djj (5/16/2016)
PenaltyShot
Goal
Stretch
Limo
Limbo
Chiropractor
Bill
May 16, 2016 at 5:16 pm
sqlfriends (5/16/2016)
The server will be a VM not physical. The host will be on SAN disks for data, log, backup drives.
I plan to put on a 8 core, but 16...
May 16, 2016 at 10:13 am
Sometimes XML questions get no love around here.
I am not great with the XML modify method (something I need to read up on and practice I guess) but here's...
May 15, 2016 at 8:32 pm
Provided that the XML files are similar you can absolutely do this. If they're not you can still do this, its just more complicated. You would have to post some...
May 15, 2016 at 7:55 pm
How do you know it's running out of memory and what is crashing? The server, just SQL? Do you have SharePoint and SQL running on the same box?
Just a couple...
May 15, 2016 at 7:35 pm
Jeff Moden (5/14/2016)
Alan.B (5/13/2016)
SELECT * FROM dbo.DelimitedSplit8K('xxx,d','');
Returns the whole string. This makes sense, the function found 0 occurrences of the delimiter.
SELECT * FROM dbo.DelimitedSplit8K(NULL,',');
Returns a NULL....
May 14, 2016 at 10:38 am
Eirikur Eiriksson (5/13/2016)
TheSQLGuru (5/11/2016)
May 13, 2016 at 10:30 pm
Lynn Pettis (5/13/2016)
Alan.B (5/13/2016)
Lynn Pettis (5/13/2016)
May 13, 2016 at 10:08 pm
Something I don't understand:
SELECT * FROM dbo.DelimitedSplit8K('xxx,d','');
Returns the whole string. This makes sense, the function found 0 occurrences of the delimiter.
SELECT * FROM dbo.DelimitedSplit8K(NULL,',');
Returns a NULL. This makes sense,...
May 13, 2016 at 9:28 pm
Lynn Pettis (5/13/2016)
May 13, 2016 at 8:01 pm
I tried both Transactional Replication and Log Shipping, but both methods end up making the Target database exactly like the Source (e.g. data, table design, and file system).
That's basically...
May 13, 2016 at 7:57 pm
sqlfriends (5/13/2016)
The server probably will be used only for this project at least now.
It has database...
May 13, 2016 at 7:38 pm
Viewing 15 posts - 691 through 705 (of 2,458 total)