Viewing 15 posts - 16 through 30 (of 1,364 total)
I am facing the same issue on SSRs2008 installation. Can someone please shed some light on its resolution?
Thanks in advance.
Manu
September 29, 2012 at 7:57 am
I think read/write access to shared location is must.
Manu
August 25, 2012 at 2:59 pm
Do you get any row in output if you execute select * from master.sys.database_mirroring_witnesses?
MJ
June 12, 2012 at 6:30 am
Have you tried the workarounds mentioned in link below.
HTH!
Manu
June 2, 2012 at 10:48 am
Check the "Automatically set I/O affinity mask for all processors" in your server properties. We had unselected this to reduce processors for licensing, and the...
March 27, 2012 at 12:59 am
Turn on trace flags for deadlock and check the deadlock grph or run both the statements and turn on profier for deadlock events in background.
This will enable you to analyse...
July 23, 2011 at 3:48 am
I don't think there is a direct command to open it in that case. You might need to take help of some external tools like --> http://dts-documentation-generator-for-sql-server-2000.soft32.com/free-download
Although I...
April 26, 2011 at 4:49 am
Thanks for sharing the script Jeff and a superb suggestion.
Manu
April 26, 2011 at 4:43 am
In that case you need to script out ur roles and check for object level access.
March 31, 2011 at 3:55 am
You can certainly change the collation of a single database.
USE master;
GO
CREATE DATABASE testdb
COLLATE SQL_Latin1_General_CP1_CI_AS ;
GO
ALTER DATABASE testDB
COLLATE French_CI_AI ;
GO
March 30, 2011 at 3:46 am
You can make use of command prompt for it:
start /wait Path of setup.exe /qb VS=Virtual Server name INSTANCENAME=MSSQLSERVER ADDLOCAL=SQL_FullText GROUP=Fulltextgroupname IP='IP Address' ADMINPASSWORD='Password' SAPWD='SAPassword' INSTALLSQLDIR='directory path' INSTALLSQLDATADIR='Data Folder path'...
March 29, 2011 at 11:25 pm
Check the execution plan of the stored procedure
March 25, 2011 at 1:30 am
Nope, you cann't as full backup of the same database whose diff/log backup is there with you now is required.
HTH!
MJ
March 17, 2011 at 12:52 am
Thanks Michael. Info. provided by you helped me too:)
Manu
January 30, 2011 at 11:41 pm
Do you know the tablename? If not, then you might need to make use of sys.columns and sys.tables information for constructing the query.
December 22, 2010 at 11:26 pm
Viewing 15 posts - 16 through 30 (of 1,364 total)