Forum Replies Created

Viewing 15 posts - 166 through 180 (of 181 total)

  • RE: How do I use indexes on temptables in SQLServer7

    Try creating Indexes with timestamp in the Index name so that whenever a new Index is created the name will be unique for the Index.This way I think you can...

  • RE: how expensive is a default value

    I think both adding the constraint and the update does the same.What I suggest is do the updates in chuncks i.e. say 1000 - 5000 at one go and a...

  • RE: Full Text Search Engine Install

    I am not sure if it require a reboot to SQL Server 7.0 But SQL Server 2000 it is not required to reboot.

  • RE: Erwin diagram

    I think if you do print screen and paste it into MS word or Excel etc. you manager can view it.

  • RE: Profiler missing duration

    Are you trying to execute the nested stored procedures.I am having an inclination that it is because of nested procedures, though not sure.

  • RE: Profiler missing duration

    Are you trying to execute the nested stored procedures.I am having an inclination that it is because of nested procedures.

  • RE: error-creating a cube role-Urgent

    yes we have sp2 installed

  • RE: PReformance monitor

    I am talking about the performance monitor not profiler.I am running on SQL 2000.Could you please tell me how.

    Thanks in advance.

  • RE: TCP/IP-Time out expired.

    Thanks guys.I jst disabled the TCP/IP from sever Network utility and then enabled.

    It's working for me now.

    Thanks,

    MK

  • RE: TCP/IP-Time out expired.

    Thanks for the response.In my error log i could see the following messages.

    SuperSocket Info: Bind failed on TCP port 1433.

    Ic ould ping this server from the client...

  • RE: dbcc shrinkdatabase

    Wondering if you delte the Rows from a table which has image data type,does it frees the space occupied by the image too.As per my understanding table holds a pinter...

  • RE: can we use do it without cursor?(may be join)

    There two queries one using while function and the other without,both these queries donot use a cursor.

    --Option1

    CREATE PROC Update_Posting (@batchId varchar(50))

    AS

    WHILE EXISTS(SELECT CaseNumber, ReceiptAmount FROM currentpostings

    WHERE batchId = @batchId)

    BEGIN

    UPDATE CaseData...

  • RE: mmc.exe error

    I have seen this problem,i have installed SP2 after which i did not come across this problem.

  • RE: SA to be denied Access

    sa is the owner of all the objects.But when the user say amit, if he creates the tables you can see him under the owner column in the EM.So, instead...

  • RE: BY PASSING SA

    If you are trying to apply the Service Pack on the NT Machine,try logging in as the local admin for that machine and try.We had the same kind of problem...

Viewing 15 posts - 166 through 180 (of 181 total)