Forum Replies Created

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

  • RE: How to use SP(generating new ID) in a insert statement

    If I read correctly what you didn't write, I think you're trying to add rows with ids N+1, N+2, etc to a table with N records in it.

    You can do...



    Best Regards,

    Otto Schreibke

    The future is a foreign country, they do things differently there.
    (Stolen from Arthur C Clarke)

  • RE: Update Oracle from SQL Server 2000

    A couple of comments:

    Using OpenQuery causes the entire resultset to be shipped across the network.

    If it is large, then this will take some time.

    For example

    Select...



    Best Regards,

    Otto Schreibke

    The future is a foreign country, they do things differently there.
    (Stolen from Arthur C Clarke)

  • RE: Get Error when using Execute command

    Execute only returns status information for the last command presented to it. You need to execute each insert statement separately, testing @@error after each.



    Best Regards,

    Otto Schreibke

    The future is a foreign country, they do things differently there.
    (Stolen from Arthur C Clarke)

  • RE: SQL sub-query problem

    Let me try to explain what's going on in a little more detail.

    Using the northwind database query

    SELECT EmployeeID

    FROM Orders

    GROUP BY EmployeeID

    returns 9 rows (Employee ids 1, 2, ... 8,...



    Best Regards,

    Otto Schreibke

    The future is a foreign country, they do things differently there.
    (Stolen from Arthur C Clarke)

  • RE: SQL sub-query problem

    Been playing around with the SQL above.

    The reason the original SQL returns 0, 0 is because hidden in the query is a cross join where one of the queries returns...



    Best Regards,

    Otto Schreibke

    The future is a foreign country, they do things differently there.
    (Stolen from Arthur C Clarke)

  • RE: Microsoft OLE DB Provider for SQL Server error ''''80040e14'''' ?!!??!

    Looks like you're trying to execute a table name as a stored procedure:

    i.e. something like

    Set ocmd = Server.CreateObject("AODB.Command")

    ...

    ocmd.commandtext = "table_name"

    ocmd.commandtype = adcmdstoredproc

    ocmd.execute

    This will fail with an error similar to the...



    Best Regards,

    Otto Schreibke

    The future is a foreign country, they do things differently there.
    (Stolen from Arthur C Clarke)

  • RE: i need difference b/w HTML and xml with xslt?

    I'd use both options, especially if the reports are essentially static:

    XML+XSLT to generate a HTML page, which you then serve to the client. This works well if you can pre-generate...



    Best Regards,

    Otto Schreibke

    The future is a foreign country, they do things differently there.
    (Stolen from Arthur C Clarke)

  • RE: DateTime

    Try

    Set DateFormat dmy

    Declare @dt DateTime

    Set @dt = '2/09/2005 12:42:32'

    select convert(char(10), @dt, 103), convert(char(8), @dt, 108)

     

    Works for me.

    Regards

    Otto

     



    Best Regards,

    Otto Schreibke

    The future is a foreign country, they do things differently there.
    (Stolen from Arthur C Clarke)

  • RE: TOP Operator using a local variable

    Gentlemen,

    Thanks for the comments.

    I don't think RGR'us' solution meets the needs despite being neat code, as usual.

    The problem setting was:

    "I need to pass a StartDate parameter and count of businessdays....



    Best Regards,

    Otto Schreibke

    The future is a foreign country, they do things differently there.
    (Stolen from Arthur C Clarke)

  • RE: TOP Operator using a local variable

    after the detective work and name calling , back to work.

    How's about:

    Declare @d datetime

    Declare @businessDays int

    Declare @cnt int

    set @d = '2004/09/18' --...



    Best Regards,

    Otto Schreibke

    The future is a foreign country, they do things differently there.
    (Stolen from Arthur C Clarke)

  • RE: Where and How to find the Computer_Name for Data Source of SQL Server Database?

    I'm struggling.

    I tried connecting to MSDE with Access (I have version XP/2002) on my test box using both a data project (.adp) and an ODBC connection in a MS...



    Best Regards,

    Otto Schreibke

    The future is a foreign country, they do things differently there.
    (Stolen from Arthur C Clarke)

  • RE: Few Questions

    Phill,

    Thanks for the reply.

    We can't use SQL/Server/64bit as we're running on opterons (x86 architecture) and not itaniums. We are using Windows 2003 Enterprise 64 Bit.

    The little documentation I found trawling...



    Best Regards,

    Otto Schreibke

    The future is a foreign country, they do things differently there.
    (Stolen from Arthur C Clarke)

  • RE: Few Questions

    How does Windows 2003/64 bit fit into the picture? We're running on opteron (not itanium) boxes with 32GB ram, but the most I'm able to allocate to sql/server is 4GB....



    Best Regards,

    Otto Schreibke

    The future is a foreign country, they do things differently there.
    (Stolen from Arthur C Clarke)

  • RE: SQL Performance/Tuning book recomendations

    Try SQL Server Query Performance Tuning Distilled by Sajal Dam. It's published by Apress ISBN 1-59059-421-5.



    Best Regards,

    Otto Schreibke

    The future is a foreign country, they do things differently there.
    (Stolen from Arthur C Clarke)

  • RE: Writing my first Stored Procedure

    Good reason not to use SP_:

    If you do SQL/Server will look for the sproc in Master, and then your user database if it doesn't find it even if you qualify...



    Best Regards,

    Otto Schreibke

    The future is a foreign country, they do things differently there.
    (Stolen from Arthur C Clarke)

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