Viewing 15 posts - 76 through 90 (of 622 total)
In reality politics in...
March 7, 2017 at 10:22 am
March 7, 2017 at 9:24 am
March 1, 2017 at 8:50 am
Actually, Gail has a point. I apparently have 34 points from the past 30 days, and I've barely posted anything I can bring to mind
February 10, 2017 at 4:01 am
The following guide for Max memory is as good as any, and better than most.https://sqlserverperformance.wordpress.com/2009/10/29/suggested-max-memory-settings-for-sql-server-20052008/
however, when you talk about "memory pressure" because SQL Server is using most or...
January 24, 2017 at 3:03 am
If you're after the query plan, why not pull it out of cache?
January 18, 2017 at 4:44 am
james.h291183 (1/6/2017)
January 6, 2017 at 5:18 am
SQL Server Developer Edition is now free. You can download that locally.
http://www.microsoft.com/en-us/sql-server/sql-server-editions-developers
January 6, 2017 at 4:02 am
Michael Gerholdt (12/20/2016)
Do a manual failover, and now only clients on the same VLAN as the...
January 4, 2017 at 5:41 am
Personally, I would always use a date dim for this type of thing. There are many scripts out there which should do most of the donkey work for you.
Firstly,...
December 15, 2016 at 2:46 am
Would you not be licensing cores, rather than VM's?
December 12, 2016 at 11:28 am
Thom A (12/6/2016)
krishnaroopa (12/6/2016)
The user has membership in db_datareader, db_datawriter and db_owner rolesThere's your problem.
db_owner's can do what every they want, whenever they want, in that database.
Slight but IMHO important...
December 6, 2016 at 4:46 am
Something like this?
select
ag.Name, AGReplica.replica_server_name, ag.Group_Id, agl.dns_name as 'ListenerName', COUNT(db.database_id) 'DatabaseCount'
from
master.sys.availability_groups ag
left join
master.sys.availability_group_listeners agl
on ag.group_id = agl.group_id
left outer join
sys.dm_hadr_database_replica_states db
on db.group_id =...
December 5, 2016 at 10:44 am
Sergiy (11/28/2016)
4. Vehicle registrations are not unique for a car.
You may change your car registration any day, by purchasing a personalised plate.
Not to mention - in many countries registration plates...
November 29, 2016 at 8:47 am
Viewing 15 posts - 76 through 90 (of 622 total)