Forum Replies Created

Viewing 15 posts - 241 through 255 (of 363 total)

  • RE: COUNT and NULL

    [font="Verdana"]

    ...am i asking the impossible?

    Certainly not. I have suggested the solution as per the 1st post. You havn't mentioned these possiblities, otherwise I would have been considered it as well....

    MH-09-AM-8694

  • RE: complete records with data from similar records

    [font="Verdana"]

    Considering you have complete set of data into TableA and TableB have incompletedata. Here you need to update the TableB according to the TableB, right?

    try this ...

    Update TableB

    Set TableB.Office...

    MH-09-AM-8694

  • RE: How to Update duplicate records in table

    [font="Verdana"]Do you mean something like this ... ?

    Update OldTable

    Set OldTable.EmpId = NewTable.EmpId

    From OldTable Inner Join NewTable On OldTable.Education = NewTable.Education

    confirm on this.

    Mahesh

    [/font]

    MH-09-AM-8694

  • RE: Fetch Row by Row with out using cursor

    [font="Verdana"]With the while loop you can do it. To explain well to you, post some live example date.

    Mahesh[/font]

    MH-09-AM-8694

  • RE: VB run-time error : Procedure or function spSaveCasteCerti has too many arguments specified.

    [font="Verdana"]You are facing this error dues to mismatch of parameters. You are passing more parameters than what actually Stored Procedure requires. i.e. If you have 10 parameters in Stored Procedure...

    MH-09-AM-8694

  • RE: Regarding copying the data of a table from one DB to other DB

    [font="Verdana"]

    Rajesh Patil (4/29/2008)


    Look into replication option or write triggers on the source table

    Replication is the best option over triggers.

    Mahesh

    [/font]

    MH-09-AM-8694

  • RE: cast or convert nvarchar with comma as decimal separator to decimal

    [font="Verdana"]

    If possible, post some sample data with desired o/p

    Mahesh[/font]

    MH-09-AM-8694

  • RE: Is it possible to save a complete html page to a table?

    [font="Verdana"]

    mick burden (4/28/2008)


    I'd like to be able to save a web page to a table and then be able to display it again by clicking on a hyper link, is...

    MH-09-AM-8694

  • RE: SELECT MIN and MAX Date for eacy day in a month range

    [font="Verdana"]

    Select user_id, Min(add_date) as [Frist Log], Max(add_date) as [Last Log] From {Table} Group By user_id

    by the way, you have ,mistakenly given wrong col heading.

    Mahesh

    [/font]

    MH-09-AM-8694

  • RE: COUNT and NULL

    [font="Verdana"]

    Select category, count(*) From {Table}

    Where createdDate Between {start date} And {end date}

    Group By category

    confirm on this.

    Mahesh

    [/font]

    MH-09-AM-8694

  • RE: Reading XML from ntext field

    [font="Verdana"]

    Create Procedure {Proc Name}

    (@xml nText)

    As

    ...

    Declare @XmlHandle Int

    Declare @r...

    MH-09-AM-8694

  • RE: Row_Number and Union query

    [font="Verdana"]

    ...and I had programatically implemented paging in asp.net by looping through all records returned by the query...

    If you have Asp. Net as fron end, then what cause you to do...

    MH-09-AM-8694

  • RE: Boost TSQL query code

    [font="Verdana"]

    select distinct ml.conta as 'Integração'

    ,Max(pc.descricao) As 'Tipo Conta'

    ,CL.NOME as 'Cliente'

    ,ml.u_subconta as 'Subconta'

    ,DEBMES, CRDMES, SLDMES

    ,DEBANT, CRDANT, SLDACCANT

    ,DEBACUM, CRDACUM, SLDACUM

    from ml (NOLOCK) inner join pc (nolock) on pc.conta=ml.conta

    inner join cl (nolock)...

    MH-09-AM-8694

  • RE: Stored Procedure - which is faster/better?

    [font="Verdana"]Second approach is much better than first one. It will decrease the network traffic tremendously.

    By the way, if you would have been posted the question directly instead of provinding URLs,...

    MH-09-AM-8694

  • RE: SqLDMO_1 is this an error?

    [font="Verdana"]

    From time to time my tables are dropping 1 by 1 and the last event in the profiler is pointing to this event - SQLDMO_1, is this the cause of...

    MH-09-AM-8694

Viewing 15 posts - 241 through 255 (of 363 total)