Viewing 15 posts - 196 through 210 (of 501 total)
Mirroring will not work from SQL 2008R2 to SQL 2005 and neither will log shipping. However, replication could be the solution for you since it will work with a 2008R2...
December 1, 2010 at 5:08 pm
Install the SQL Server 2008 Native client from this page on each client.
This will install the new ODBC drivers for SQL 2008.
December 1, 2010 at 3:19 pm
I'm not sure if this applies to SQL 2008 but I was bit by this doing a rolling upgrade from SQL 2005 to SQL 2008R2.
If you plan on using the...
November 24, 2010 at 3:36 pm
and then a week ago i created new recommended indexes in the Blackberry server database and it's still asking for the same ones to be created.
Paul has a blog about...
November 23, 2010 at 4:19 pm
MS provides a couple stored procedures to do just that:
November 22, 2010 at 5:25 pm
You should always set max memory for SQL Server to something less than the max memory on the machine. If not, SQL could potentially consume all the memory on the...
November 22, 2010 at 5:20 pm
Patricia Johnson (11/22/2010)
Does anyone know if you can use sql server 2008 sp2 on a R2 installation? I just found the sql server 2008 sp2 is out.
SQL 2008 and...
November 22, 2010 at 3:28 pm
Did you add the new LUN to the cluster group and define the dependency on it for the SQL Server service to start?
November 19, 2010 at 4:33 pm
We recently got a mobile app in house from Rove. It piggy backs on the secure Blackberry network so no VPN connection is needed. You can run cmd, powershell, RDP,...
November 19, 2010 at 4:20 pm
CirquedeSQLeil (11/15/2010)
best cures for me are basketball and running.
I agree. Physical activity such as working out tends to help me get over the mental burnouts. I actually feel like I...
November 15, 2010 at 5:13 pm
This should do the trick assuming the views and sprocs you want them to see are all in the dbo schema.
GRANT VIEW DEFINITION ON SCHEMA::[dbo] TO [sqluser]
GO
November 15, 2010 at 5:02 pm
Right click the db>Reports>Standard Reports>Disk Usage
or to see the log info for all databases
dbcc sqlperf(logspace)
November 11, 2010 at 9:17 pm
Yes, you can connect to SQL 2008 servers with SSMS 2005 provided you have it patched to SP2 CU5 or greater. As David said, you will not be able to...
November 11, 2010 at 12:05 am
If you compress a table the data written to that table will be compressed also but compressed indexes, clustered or non-clustered, require the same maintenance as uncompressed indexes. ie; you...
November 10, 2010 at 11:50 pm
If the database is in simple recovery mode you can use something like:
USE <dbname>
GO
CHECKPOINT
GO
ALTER DATABASE <dbname> REMOVE FILE dbname_log2
GO
Or if it's in full recovery mode you will need to...
November 10, 2010 at 11:44 pm
Viewing 15 posts - 196 through 210 (of 501 total)