Forum Replies Created

Viewing 15 posts - 31 through 45 (of 89 total)

  • RE: Update query won't update

    UPDATE dbo.EPool

    SET dbo.EPool.UIC = dbo.NAVMC.UIC

    ,dbo.EPool.TAM5 = dbo.NAVMC.TAM5

    ,dbo.EPool.NAVMCPO = dbo.NAVMC.PO

    ,dbo.EPool.OPFORTETotal = dbo.OPFORTE.OrgQTY

    ,PO_Over = CASE WHEN

    ...

  • RE: SSIS dynamic mapping of columns

    Thanks Naveed...

    I will try this.

  • RE: date format problem

    For 1st query it is giving results. But, for 2nd query it is not giving any result. If I use first query, thru application it is taking more time and...

  • RE: SSIS dynamic mapping of columns

    We had a similar problem, although it was using text files and other ODBC connections as the source. I also looked through the web, and unfortunately as far as i...

  • RE: How to design new query to take off invoice?

    SELECT *

    FROM dbo_pod_surgery

    WHERE phc_id="22/15729";

    If you know activity why r u using phc_id...

    you can directly use the activity in where clause.

  • RE: how to get n th index of a character in a string

    Use this code

    select left('hello/what/ru/doing?/happy/new year

    ',len('hello/what/ru/doing?/happy/new year

    ')-(len('hello/what/ru/doing?/happy/new year

    ')-charindex('/','hello/what/ru/doing?/happy/new year

    ')))

  • RE: sql server 2005 certification

    Sorry... I dont know any sites where you can get free exam. I feel you if you search on internet you may get some information on that.

    I have also seen,...

  • RE: Enterprise evaluation to Developer edition

    Since you are planning to move all the database.. you can also consider moving all the system database also.

    So that all the settings which you might have forgot to script...

  • RE: service account

    If you want to find which are all the service running on the computer... i.e sql server, analysis service, reporting service.

    You can find these service or installed services in surface...

  • RE: Adding a Rank to sorted groups

    select rank() OVER ( partition by group_name ORDER BY group_name ) as rank, group_name, value, from group

    Try the above code for getting rank.

  • RE: Very intresting Arithmetic over flow error while addition

    I did not know this.... I tried with some statements ... its really great to understand this.

    Just try with these statements and post your comments.

    select 5+2147483647

    select 2545801376+2833558419

    select 7758079223372036854775807+7758079223372036854775807

    select 7758079223372036854775807+1

    Just run...

  • RE: SSIS 2005 taking very long time to datapump 2-5 million rows - Performance problem

    I dont think loading the data to a file and loading it back to the data mart is good idea. Since loading into file... and again back to datamart.. will...

  • RE: retrieve the previous version of a stored procedure

    I think there is a miscommunication..... with the message I have posted.

    As Gail Shaw mentioned if you have backup of the database where you have the previous version of the...

  • RE: retrieve the previous version of a stored procedure

    I think there is a miscommunication..... with the message I have posted.

    As Gail Shaw mentioned if you have backup of the database where you have the previous version of the...

  • RE: Complex Parameter display

    It is true that SSRS is limited when it comes to use parameters and specially default parameter. If we use the setting provided by SSRS then we need to be...

Viewing 15 posts - 31 through 45 (of 89 total)