Viewing 15 posts - 2,521 through 2,535 (of 49,571 total)
Duplicate post. No replies here. Replies to http://www.sqlservercentral.com/Forums/Topic1812925-392-1.aspx
August 26, 2016 at 11:47 am
How do total and target server memory behave at the time of the dip in PLE?
August 26, 2016 at 8:09 am
You can make the secondary replica async if there's a latency concern. You won't be able to auto-failover, but you can't auto-failover with log shipping either.
August 26, 2016 at 7:40 am
Log shipping will work. Any reason you can't add the server to the cluster?
August 26, 2016 at 7:03 am
PJ_SQL (8/25/2016)
- Pages Scanned................................: 1
- Extents Scanned..............................: 1
- Extent Switches..............................: 0
- Avg. Pages per Extent........................: 1.0
- Scan Density [Best Count:Actual Count].......: 100.00% [1:1]
- Logical Scan Fragmentation ..................:...
August 26, 2016 at 6:56 am
No. Not going to work.
Why not just use another secondary replica in the other data center. You can even make it an async one if you need.
August 26, 2016 at 5:56 am
SELECT OBJECT_NAME(object_id) AS TableName, SUM(rows) AS Rows FROM sys.partitions
WHERE index_id IN (0,1)
AND OBJECTPROPERTY(object_id, 'IsMSShipped') = 0
GROUP BY object_id
August 26, 2016 at 5:54 am
inevercheckthis2002 (8/26/2016)[hr
Runnning sp_table_privileges as a sys admin returned results similar to what Gail posted. Which doesn't show me table permissions, just who can grant permissions??? (right?)
No, it shows the...
August 26, 2016 at 5:44 am
Start by identifying how many digits of precision you need.
Because, even if we had infinite precision calculations, when displaying the data back to users, we're not going to be displaying...
August 26, 2016 at 2:25 am
If the log file is full, then reducing the size of the file should be the last thing that you want to do.
Full means no free space in the file,...
August 26, 2016 at 2:15 am
Please don't post the same question in multiple places. No replies here please. Replies to http://www.sqlservercentral.com/Forums/Topic1812729-3077-1.aspx
August 26, 2016 at 2:07 am
Please don't post the same question in multiple places. No replies here please. Replies to http://www.sqlservercentral.com/Forums/Topic1812729-3077-1.aspx
August 26, 2016 at 2:07 am
Please don't post the same question in multiple places. No replies here please. Replies to http://www.sqlservercentral.com/Forums/Topic1812729-3077-1.aspx
August 26, 2016 at 2:07 am
Jeff Moden (8/26/2016)
Grant Fritchey (6/9/2015)
There are places where partitioning can, and does, improve performance.
Apologies for the year late response and I hate to be contrary but everywhere I've seen...
August 26, 2016 at 2:01 am
You want a try...catch block that either logs errors or returns a sensible message (or the original error message) back to the app. I'd say use THROW as well, but...
August 25, 2016 at 2:43 pm
Viewing 15 posts - 2,521 through 2,535 (of 49,571 total)