Viewing 15 posts - 1,546 through 1,560 (of 1,988 total)
Yes you can install multiple instances of SQL Server on the same machine, those would be named instances. And yes each one will need its own database and log...
October 1, 2015 at 8:46 am
xsevensinzx (9/28/2015)
Andrew..Peterson (9/28/2015)
xsevensinzx (9/28/2015)
ZZartin (9/28/2015)
xsevensinzx (9/28/2015)
What makes it 10x worse is that while you can verify everything is good with your end result, someone can take that end result (i.e.:...
September 28, 2015 at 9:28 am
Ed Wagner (9/28/2015)
anthony.green (9/28/2015)
eccentricDBA (9/28/2015)
Ed Wagner (9/28/2015)
anthony.green (9/28/2015)
crookj (9/28/2015)
Ed Wagner (9/28/2015)
anthony.green (9/28/2015)
Ed Wagner (9/28/2015)
anthony.green (9/28/2015)
Ed Wagner (9/26/2015)
SQLRNNR (9/26/2015)
Ed Wagner (9/25/2015)
Luis Cazares (9/25/2015)
Ed Wagner (9/25/2015)
BrothersMario
Luigi
Koopa
Bowser
Boom Boom
Shotgun
Wedding
Reception
Function
RBAR
Set
Spike
Willow
Tree
Leaf
September 28, 2015 at 8:56 am
xsevensinzx (9/28/2015)
What makes it 10x worse is that while you can verify everything is good with your end result, someone can take that end result (i.e.: data) and use it...
September 28, 2015 at 7:54 am
Tavis Reddick (9/28/2015)
For each entity (table,...
September 28, 2015 at 7:36 am
You might be able to use mail merge in Word to generate the documents, you can merge a csv extract or a table or view for that matter into a...
September 25, 2015 at 9:03 am
Steve-3_5_7_9 (9/25/2015)
If they stole the diff backup, why wouldn't the full backup be...
September 25, 2015 at 7:20 am
Maybe something like,
DELETE FROM [TableName] WHERE id IN(
SELECT id FROM [TableName] GROUP BY id HAVING COUNT(id) > 1
UNION
SELECT id FROM [TableName] WHERE [no] IN (SELECT [no] FROM [TableName] GROUP BY...
September 24, 2015 at 11:10 am
Is there a reason to join to the CTE instead of just putting the rank function in the SQL query?
September 22, 2015 at 11:18 am
Try taking the AND H1.[Dense Rank] = 1 out of the join on the select and see what happens 🙂
It looks like it might be joining the dense rank 1...
September 22, 2015 at 10:27 am
That question is horribly vague, SQL server can stores TB's or PB's of information, depending on what format that data is in that could be enough to hold all the...
September 22, 2015 at 7:58 am
Dave62 (9/21/2015)
Jack Corbett (9/21/2015)
September 21, 2015 at 3:30 pm
call.copse (9/21/2015)
September 21, 2015 at 7:58 am
IF @QuantityID IS NOT NULL
INSERT INTO @Temp SELECT @QuantityID
IF @LengthID IS NOT NULL
...
September 17, 2015 at 11:05 am
Viewing 15 posts - 1,546 through 1,560 (of 1,988 total)