Viewing 15 posts - 4,981 through 4,995 (of 49,571 total)
Same reason you can't put two normal clustered indexes on a single table. A clustered index *is* the table. It's either in a row-based format (CREATE [UNIQUE] CLUSTERED INDEX) or...
August 18, 2015 at 4:00 pm
Error message is very clear, you cannot create more than one clustered index on the same table.
CREATE UNIQUE CLUSTERED INDEX [FactSales_SalesID] ON [dbo].[FactSales] (salesid ASC)
WITH (DATA_COMPRESSION = PAGE)
GO
CREATE CLUSTERED COLUMNSTORE...
August 18, 2015 at 3:29 pm
mar.ko (8/18/2015)
INSERT INTO @TESTTAB SELECT * FROM dbo.UTIL_TABLE_FROM_STRING(@szDelimit)
No, not without changing the code around it (which may be something worth considering)
Why doesn't this work ?:
SET @TESTTAB = (SELECT * FROM...
August 18, 2015 at 3:22 pm
If you go that way, keep in mind that you don't connect directly to the async replica, you connect to the AG listener with the Read Only Intent property added...
August 18, 2015 at 1:30 pm
I'm not looking forward to September. One flight to Cape Town for SQLSaturday Cape Town, one flight to Durban for SQLSaturday Durban (first event in that city), one flight to...
August 18, 2015 at 1:28 pm
SELECT name FROM sys.database_principals WHERE sid = ...
August 18, 2015 at 9:56 am
I think he's thinking about the 'you may run the passive server for 30 days before you need to license it' clause, but that applies to a DR failover, not...
August 18, 2015 at 8:58 am
Test it out first and see. I can't rmember where, or if maybe I'm misremembering the requirements and I'm not going searching.
August 18, 2015 at 8:57 am
As soon as you do anything else on the passive node, it must be fully licensed. It's only under the 'no licence required' while it hosts a passive DB and...
August 18, 2015 at 8:18 am
AlwaysOn failover clustering with a 4 node cluster?
AlwaysOn Availability Groups with a principle replica and three secondary replicas?
Or do you really have Availability Groups and failover clustering mixed? The principle...
August 18, 2015 at 7:55 am
muthyala_51 (8/17/2015)
Not sure if this is possible or not.
Possible, yes. However unless those two sets of users make changes to completely different sets of tables or subsets of the data,...
August 18, 2015 at 4:21 am
Can't see the image.
Buffer cache hit ratio is a useless counter. Ignore it.
PLE can't be judged from a single value. Use Perfmon, set up a counter trace which will run...
August 18, 2015 at 1:06 am
Chris.Hubbard4U (8/17/2015)
GilaMonster (8/14/2015)
August 18, 2015 at 1:03 am
Viewing 15 posts - 4,981 through 4,995 (of 49,571 total)