Forum Replies Created

Viewing 15 posts - 16 through 30 (of 42 total)

  • RE: How to change the scale of decimal calculated columns

    So, is there a way to get rid of the right two numbers to get 9998.00 ?

  • RE: Date problem with SQL 2000

    Of course this will work, but the question is that I already have a lot of procedures based on the same formula but never experienced such problem. So, I am a...

  • RE: Date problem with SQL 2000

    @startdate 31/7/05 and @enddate 1/8/05

  • RE: Date problem with SQL 2000

    This is the original function that returns no results as audit dates are on 1/8/05

    SELECT     TOP 100 PERCENT ISNULL(dbo.tblMATransfer.tServiceDate, dbo.tblMAFolder.ServiceDate) AS ServiceDate, ISNULL(dbo.tblMATransfer.tStatus,

                          dbo.tblMAFolder.FolderStatus) AS FolderStatus, ISNULL(dbo.tblMAFolder.MAFolderID, dbo.tblMATransfer.MATransferID)...

  • RE: Date problem with SQL 2000

    Yes, because I looked into the data at the table level and date is set correctly and it contains time.

    About the left function, it is working perfectly. I got it...

  • RE: Date problem with SQL 2000

    When I ran the procedure from query analyzer, I still get the same erroneous results.

    I use the left function as follows Left(datetimefield, 12) and it gives the accurate results.

  • RE: Data modification

    yes the data is consistent with period after title. No there is no comma between names and there are no records with more than three strings

  • RE: Data modification

    Yes they always start with either Mr. Miss, mrs. but there is not a dot always. They are stored as title, lastname, firstname

  • RE: Problem displaying data

    Then how do you recommend  a solution for this issue as sometimes even the customer number may be 3 , 4 or five....

  • RE: Problem displaying data

    The main table is a service table that has a single servicerefno, we add to customers to the same service which carry the same servicerefno so it is one to...

  • RE: Problem displaying data

    SELECT     dbo.tblMeetAssist.FolderID, dbo.tblMeetAssist.CategoryID, RTRIM(dbo.tblPaxList.Title) + SPACE(1) + RTRIM(dbo.tblPaxList.FirstName) + SPACE(1)

                          + RTRIM(dbo.tblPaxList.LastName) + CHAR(13) + CHAR(10) + RTRIM(tblPaxList_1.Title) + SPACE(1) + RTRIM(tblPaxList_1.FirstName) + SPACE(1)

                          + RTRIM(tblPaxList_1.LastName) AS Service,...

  • RE: Problem displaying data

    I am creating a main table under which there are a lot of services (around 10) and each service also has some other linked tables. At the end I need...

  • RE: Problem displaying data

    The problem is I will be using this in generating a lot of other queries not just for presentation

  • RE: Problem creating a list

    This is because the id is a link field to a different master service table and that is why I need to generate pax list for that master service table

  • RE: The best way to handle look up tables

    Unfortunately, this can not be done as the user must enter sometimes more than ten airports in one form and the way the airport codes are arranged makes it very...

Viewing 15 posts - 16 through 30 (of 42 total)