Forum Replies Created

Viewing 10 posts - 1 through 11 (of 11 total)

  • RE: While Loop Vs FAST_FORWARD READ_ONLY CURSOR

    Yes there is no primary key and now index on this table .. Actualy this is my staging table where I update the records and then from here insert a...

  • RE: While Loop Vs FAST_FORWARD READ_ONLY CURSOR

    Perfect.. your are absolutely right

  • RE: While Loop Vs FAST_FORWARD READ_ONLY CURSOR

    Here I am giving you my actual store procedure ... Thank you for looking into it.

    =======================

    Declare Agent_SkillGroup Cursor FAST_FORWARD READ_ONLY FOR

    SELECT DateTime,SkillTargetID,PeripheralID,sum(HandledCallsTalkTimeToHalf),count(*)

    FROM WCI_IP_ST_AGENT_SKILL_GROUP_HH ...

  • RE: While Loop Vs FAST_FORWARD READ_ONLY CURSOR

    /****** Object: Table [dbo].[WCI_IP_ST_AGENT_SKILL_GROUP_HH] Script Date: 05/08/2009 14:28:37 ******/

    SET ANSI_NULLS ON

    GO

    SET QUOTED_IDENTIFIER ON

    GO

    SET ANSI_PADDING ON

    GO

    CREATE TABLE [dbo].[WCI_IP_ST_AGENT_SKILL_GROUP_HH](

    [DateTime] [datetime] NULL,

    [EmpNumber] [varchar](32) NOT NULL,

    [Skill Group] [varchar](32) NOT NULL,

    [SkillGroupSkillTargetID]...

  • RE: While Loop Vs FAST_FORWARD READ_ONLY CURSOR

    thanks for quick reply. Could you please explain more about temp table and a query joining to it?

    Is this process possible without Cursor or while loop?

    Thanks

    jwalin

  • RE: Wired thing Happend in DateTime

    Hi

    Thank you for sending me the store procedure ... But the result is same .. no luck ...

  • RE: Wired thing Happend in DateTime

    Here is my store Procedure

    CREATE PROCEDURE sp_TransferData_Compare

    (

    @StartDate varchar(10),

    @EndDate varchar(10)

    )

    AS

    --

    --Declare @startdate datetime

    --Declare @enddate datetime

    --

    ----converted to varchar by Rob because the time was being passed

    ----to the procedure causing errors

    --select @Startdate...

  • RE: how to link two different database as

    could you please send me the gneral syntax for connecting server

  • RE: how to link two different database as

    Just quick question, This setting is only for my machine or it is common for all ... as in my team we have 5 people.. so do i have to...

  • RE: how to link two different database as

    thank you vey much to sending me very quick reply ... I appriciate.

    To Create two linked server to itself, I need to do it on each developer machine? Am...

Viewing 10 posts - 1 through 11 (of 11 total)