Forum Replies Created

Viewing 8 posts - 1 through 8 (of 8 total)

  • RE: Executing (calling) a web service from SQL Server

    Thank you for the replies - I'll check out the suggestions. For your information, let me only clarify that the task in question (for me this time) is to 'send'...

  • RE: multiple select statements in a single access stored procedure?

    Hello again, I see you have a challenging task. Just a quick re-reply on UNION in general. You may in principle UNION 'whatever you like' as long as you know...

  • RE: multiple select statements in a single access stored procedure?

    Hello, I take it that the selects represent similar information extracted by the various select statements. If so, you might bypass your 'problem' by merging the selects using UNION.

    Regards,

     

     

  • RE: Table Design Question

    Hi, just a quick comment, since it seems that the purpose is dealing with historical data or analysis at least. You may want to approach the task from 'data warehouse'...

  • RE: case study

    Hi, you have received good advice already, but just let me give you a little info about our solution so far:

    1. A central SQL Server is on the network, accessible...

  • RE: When's Your Anniversary

    Hello Steve,

    here is a quick take at your interesting problem using the 'dayofyear'. I have put all variables explicit, but have not had much chance to check thoroughly. The example...

  • RE: help with stored procedure

    hello,

    you might even try this 'easy' way in the where-statement:

    where

    (@firstname is null or au_fname like @firstname+'%')

    and

    (@lastname is null or au_lname like @lastname+'%')

  • RE: Bulk Insert from CSV problem

    Hi, an easy way out will usually be to remove the double quotes before running bulk insert. That is, if the file is not tooo big, use an editor and...

Viewing 8 posts - 1 through 8 (of 8 total)