Forum Replies Created

Viewing 15 posts - 13,366 through 13,380 (of 13,849 total)

  • RE: Debugging procedures in Query Analizer

    Are you running QA on the server itself, or over a network?  I think I've heard of this happening over a network - can you copy the db to your...

  • RE: Finding out a record

    Here's another (similar) way - I wrote it to run on the orders table in Northwind and it returns the tenth row, based on order ID:

    select top 1 a.* from (select...

  • RE: Round Function

    Try this:

    ROUND(478.0/15, 0)

    Your example is performing integer division, whereas you want to perform float division and then round.

  • RE: Date problem with SQL 2000

    Yes - I would advise you to amend the other procedures to deal with this.

    The only reason I can think of as to why they seem to work already is...

  • RE: Date problem with SQL 2000

    Then SQLBill's post is 100% relevant.

  • RE: Data Script generation

    Do you mean a script to insert data?

  • RE: SQL Query

    You just need to add an additional WHERE condition to your queries.

    Query 1 - >

    SELECT DrawID,DrawDate,WinningNumbers FROM [Result Table] WHERE

     DrawID IN (SELECT Max(DRAWID) From [Result Table] where...

  • RE: Multiple Table Transformations

    That is somewhat clearer, though I am still a bit puzzled about how you are prepared to wipe all of the data that exists in some of the tables in...

  • RE: Query

    I must be missing something, but here's how I would answer questions (1) and (2)

    1)  select * from projects where '2006-03-01 00:00' between StartDate and EndDate

    2) select * from projects...

  • RE: Date problem with SQL 2000

    To get those results, what did you put in @StartDate and @EndDate?  Was it 1/8/2005?

  • RE: Multiple Table Transformations

    I presume that you are not capturing the changes themselves - you just know what tables are affected and want to send those to your 'live' server?  This sounds a...

  • RE: Date problem with SQL 2000

    OK - we're going to have to go into a bit more detail then.  Can you please post examples of the query that you are using, the source data, the expected...

  • RE: Date problem with SQL 2000

    But the left() function returns a varchar, not a datetime, so there's something strange going on here

    Perhaps your problem is linked to the...

  • RE: Date problem with SQL 2000

    It seems that you are not sure of the root of the problem - is it VB, or is it SQL Server?  I suggest that you run Profiler to see...

Viewing 15 posts - 13,366 through 13,380 (of 13,849 total)