Forum Replies Created

Viewing 15 posts - 46 through 60 (of 72 total)

  • RE: Where can I find Enterprise Manager

    Hello, try to follow below steps  

    1. Click on "Start" go to "RUN" type mmc (memory management console)

    2. Go to File--> Add/Remove snap-in

    3. Click on the Add button...

  • RE: Duplicate index spools or not?

    hi

    As per execution plan,there are be four identical temporary indexes created. I guess this is problem with CTE. I always try to use CTE part as subquery.    

  • RE: Linked Server - User Defined Functions

    Yes you are right !! It depends and I am agree with processing data from  remote server is bad design. If the performace is only creteria for putting database in different server,...

  • RE: Linked Server - User Defined Functions

    I agree with what you wants to suggest. My concern was when one application supports 2 or more databases say 1.Metadata DB: which store applications metadata  2.Client DB: which stores user specific...

  • RE: Linked Server - User Defined Functions

    A possible business requirement

    I could have application where I setup client data database and metadata database on two different servers. In such cases clients database might need some business logic from metadata database in the...

  • RE: Alternate to CHECKSUM ??

    Not really, the columns can be all Int/char or combinations of int and char.  

     

  • RE: Alternate to CHECKSUM ??

    Hi stax, thanks for suggestion but in my case both the table and columns get generated dynamically during process. Here is query I want to optimize. creating non-clustered index is not much...

  • RE: Need to Tune Query

    Hi Tim, I am 100% agree that making MAXDOP = 1 is not the solution to be implemented and indexes on the columns participating in join should have non-clustered indexes....

  • RE: Need to Tune Query

    Hi Tim

      Thanks a lot for the help. I got the isuue, it was with MAXDOP. some more info about the problem..

    "The sys process info tells...

  • RE: Need to Tune Query

    Yes, I know..sorry for not giving all information. We have an application where user create the tables and they are named as T434_....

    The above query is puting matching rows between two...

  • RE: Upgrade Script needed

    Hi

     Thanks for the reply.. I found more simpler one

    declare @t table (Recreate_flag bit, Update_flag bit, Append_flag bit)

    insert into @t

    select 1,0,0 union all select 0,0,1 union all select 0,1,1

    select...

  • RE: Sp_Tableoption for "Large Value Types Out of Row"

    Hi.

    Select name,type_desc from sys.tables where large_value_types_out_of_row =1

     

  • RE: How do I return a recordset or table from a stored procedure

    Hi,  For your ref

    SQL Server 2000 stored procedures return data in four ways: Output parameters,Return codes,A result set for each SELECT statement,A global cursor that can be referenced outside...

  • RE: Question regarding NULLS

    Hi  This was i was looking for, functionality of nulls shall be as follows. I think jesper had replied for that.  Thanks...a lot .. 

                       

Viewing 15 posts - 46 through 60 (of 72 total)