Viewing 15 posts - 3,796 through 3,810 (of 49,571 total)
Year old thread. Probably fixed one way or another by now.
January 20, 2016 at 2:34 am
sp_spaceused 'TableName'
or query sys.dm_db_index_physical_stats
January 20, 2016 at 1:56 am
spaghettidba (1/19/2016)
GilaMonster (1/19/2016)
January 20, 2016 at 12:48 am
dm_sql_referenced_entities is 2008 and above. sys.sql_dependencies can be inaccurate, as procedures can be created before the tables they reference, if they are the dependency info won't be there. No good...
January 19, 2016 at 2:30 pm
*sigh* All but one comment on a blog post are of the form 'Did you try X?' 'Have you compared Y?' 'Probably should have a test with Z'
*NO. If I...
January 19, 2016 at 2:26 pm
Partitioning. Stretch is kinda 'automatic partitioning', so you can partition the table, switch out older data (partition at a time) into a standalone table. Once it's not in the main...
January 19, 2016 at 2:20 pm
Perry Whittle (1/19/2016)
January 19, 2016 at 1:48 pm
I'm going to assume the answer to the question you keep ignoring is 'No', in which case Perry explained above why you're not seeing the read-only routing
Are you specifying the...
January 19, 2016 at 1:33 pm
I highly doubt it, and besides, there wouldn't be much point.
Stretch is so that you can move older (less used) rows out to cloud storage to reduce the storage you...
January 19, 2016 at 1:09 pm
curious_sqldba (1/19/2016)
GilaMonster (1/19/2016)
curious_sqldba (1/19/2016)
When i connect to listener even using the added option i still connect to primary, i was hoping to connect to secondary.
Are you specifying the database name...
January 19, 2016 at 12:57 pm
curious_sqldba (1/19/2016)
When i connect to listener even using the added option i still connect to primary, i was hoping to connect to secondary.
Are you specifying the database name in the...
January 19, 2016 at 12:45 pm
krypto69 (1/19/2016)
You can execute queries directly to the listener DB.For example we have three nodes NODEA, NODEB, NODEC. NODEB & NODEC are both listeners.
The listener is not...
January 19, 2016 at 12:45 pm
EasyBoy (1/19/2016)
Sean Lange (1/19/2016)
January 19, 2016 at 10:10 am
Sean Lange (1/19/2016)
Can you post the actual execution plan instead of the excel version?
SQL 2000.
January 19, 2016 at 10:07 am
The only queries which go to read only replicas are ones that are run on connections which were made with the ReadOnlyIntent option in the connection string. If you do...
January 19, 2016 at 8:44 am
Viewing 15 posts - 3,796 through 3,810 (of 49,571 total)