Viewing 15 posts - 1 through 15 (of 37 total)
GilaMonster (3/29/2010)
SQL Server 2009 does not support compatibility level 70 (SQL Server 7)
I'm yet to use this version
March 30, 2010 at 9:00 am
MSreplication_subscriptions
January 25, 2010 at 5:52 am
I might have even confused myself. I think that a DENY should always take precedence over any other permissions.
However I think fixed server roles will override database level permissions....
January 14, 2010 at 10:26 am
Is the user in any database roles eg.db_datawriter or fixed server roles that could be overriding this?
January 14, 2010 at 10:01 am
Powershell is also pretty good for these sorts of tasks. You can easily write some scripts which will loop through a list of servers to find all this information and...
December 31, 2009 at 5:06 am
This question is pretty poorly worded...
"we setup the Transactional replication from ABC to ABC\first" - from this it sounds like ABC is just a default instance as no instance is...
December 29, 2009 at 4:01 am
You can also create a database snapshot on the mirror to avoid failover - if you're on Ent or Dev edition.
December 7, 2009 at 6:24 am
I can find the description of all my reports in SSRS 2005 via dbo.Catalog.Description
Params can be extracted from the parameters column.
Another option is an SSIS package or some powershell to...
December 3, 2009 at 10:01 am
Have you thought of querying the ReportServer database?
look in dbo.Catalog & dbo.DataSource for the info you need.
D
December 3, 2009 at 9:25 am
RAID 10 for your data looks good.
RAID 0 has no redundancy - so if a disk goes pop (they eventually will), you will lose the database as it contains the...
July 23, 2009 at 4:27 am
Have you tried it with the @updateusage option? Sometimes when an index is dropped, the space stats can be out.
eg.
USE AdventureWorks;
GO
EXEC sp_spaceused @updateusage = N'TRUE';
GO
July 21, 2009 at 4:26 am
Have a look at Application Roles in books online. These should allow you to control what applications are connecting through.
July 2, 2009 at 3:55 am
Before your cluster goes live, it is worth running the SQL Stress IO Sim from MS to get some bench mark figures. It provides most of those stats to check...
June 5, 2009 at 5:22 am
I'm not too sure why they are suggesting 3rd party products when SQL 2005 has quite a lot DR capabilities built in.
Some good reads...
Clustering - (thx Brad)- http://www.sql-server-performance.com/articles/clustering/cluster_sql_server_2005_p1.aspx
Mirroring...
May 11, 2009 at 8:53 am
Windows clustering will take care of the heartbeat - generally you will run a crossover cable between the 2 nodes for private cluster traffic. Your application is unaware of which...
May 11, 2009 at 8:39 am
Viewing 15 posts - 1 through 15 (of 37 total)