Forum Replies Created

Viewing 15 posts - 916 through 930 (of 961 total)

  • RE: Benefits of SQL Server clustered test Environment

    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...

    Jayanth Kurup[/url]

  • RE: Excel output on Subscriptions from report manager in SQL Server 2008 R2

    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...

    Jayanth Kurup[/url]

  • RE: SQL MAX function

    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...

    Jayanth Kurup[/url]

  • RE: Missing Database

    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...

    Jayanth Kurup[/url]

  • RE: Database Recovery

    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

    Jayanth Kurup[/url]

  • RE: Resource allocation in sql server 2005

    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...

    Jayanth Kurup[/url]

  • RE: MOVING DATA FILES

    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...

    Jayanth Kurup[/url]

  • RE: Need Help with logshipping

    could you check the schedule of the restore job on the secondary server and exactly what is the error message u get ?

    Jayanth Kurup[/url]

  • RE: Deleting 400K rows

    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...

    Jayanth Kurup[/url]

  • RE: Truncating on a month by month basis

    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...

    Jayanth Kurup[/url]

  • RE: Memory error: The operation cannot be completed because the memory quota estimate (4095MB).....

    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...

    Jayanth Kurup[/url]

  • RE: Memory error: The operation cannot be completed because the memory quota estimate (4095MB).....

    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...

    Jayanth Kurup[/url]

  • RE: SSRS: Show Parameters

    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...

    Jayanth Kurup[/url]

  • RE: replicate sql 2000 cube to sql 2005

    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...

    Jayanth Kurup[/url]

  • RE: Data Warehousing Software

    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...

    Jayanth Kurup[/url]

Viewing 15 posts - 916 through 930 (of 961 total)