Viewing 15 posts - 916 through 930 (of 960 total)
Hmmm ur organization must have a lot of money to setup a test environment using clustering.
Clustering is a DR or high availability solution, any reason why a test environment will...
June 15, 2011 at 3:23 am
They are two different products developed by two different team within MS , cross product compatibility is not a given. As for the issue your facing , you can
Download...
June 15, 2011 at 2:27 am
Is this the compete query , if there is no data to return sl return null not N/a , if N/A is the value your getting there is a...
June 15, 2011 at 1:45 am
This is an administration issue , you could enable a server trigger to audit the use of DDL statements. also revoke access to all users who have no reason to...
June 15, 2011 at 1:13 am
EXEC sp_resetstatus 'your_DB';
ALTER DATABASE your_DB SET EMERGENCY
DBCC checkdb('your_DB')
ALTER DATABASE your_DB SET SINGLE_USER WITH ROLLBACK IMMEDIATE
DBCC CheckDB ('your_DB', REPAIR_ALLOW_DATA_LOSS)
ALTER DATABASE your_DB SET MULTI_USER
replace your_db with the name of the Database.
Jay
August 25, 2008 at 12:08 am
Under the processor tab of the properties in SQL Server 2005 you have an option to boost SQL Server Priority. also you can select the process from Tsak manager right...
August 7, 2008 at 2:25 am
Just to be on the safe side make sure u have a backup and also make sure u have run DBCC checkdb against the database. before taking the backup.. Seen...
August 7, 2008 at 2:09 am
could you check the schedule of the restore job on the secondary server and exactly what is the error message u get ?
August 4, 2008 at 4:54 am
I am not sure if this is even an option but you could try using a logical delete ... and then perform the actual delete when there is a window...
August 4, 2008 at 4:51 am
Truncate table command will delete all rows in the table , so unless you can guarantee that there will be no inserts happening to the table until the previous records...
August 4, 2008 at 4:33 am
The error was flagged by SSAS , and we tried processing using 1 thread. and it was quite slow but did the job , the problem is we need it...
May 20, 2008 at 1:28 am
Currently we are not using a data mining model. All we have is an Molap cube.
I have tried processing the dimension using xmla , Data flow task and the...
May 7, 2008 at 10:18 pm
Id try adding a label on the report with value coming from the parameter as an expression .
=Parameters!Date.Value this will be displayed when u preview the report as well...
May 6, 2008 at 10:18 pm
use VS 2005 to create a new import Analysis Services 9.0 db and choose the source as ur 2000 cube then deploy the same to the 2005 cube.
or right click...
May 6, 2008 at 10:14 pm
I have used SQL Server Analysis Services and reporting Services with Crystal reports and Ad-hoc Aspx webpages with pivot com embedded to support the reporting as well. Oveall things are...
May 4, 2008 at 10:37 pm
Viewing 15 posts - 916 through 930 (of 960 total)