Forum Replies Created

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

  • RE: BULK INSERT access denied

    I am executing under the sa login and this is the exact error I am receiving:

    Server: Msg 4861, Level 16, State 1, Line 1

    Could not bulk insert because file '\\server\fdata\sync.dat'...

  • RE: How to return a result set from temporary table

    Your new stored procedure should look like this:

    CREATE PROCEDURE sp_get_total_qty_rate

    @customerid char(15),

    @datefrom datetime,

    @dateto datetime

    AS

    DECLARE @dDateFrom datetime, @dDateTo datetime, @sCustomerid char(15), @fdnqty numeric, @nRate numeric

    set nocount on

    /* Create temporary table*/

    CREATE...

  • RE: How to return a result set from temporary table

    Hello,

    What you need to do is to "set nocount on" in your stored procedure, before the create table and then place a "set nocount off" after the insert statement. ...

  • RE: Departmentalizing Databases

    Jeremy,

    Using a corporate and application database structure, how did you manage the data integrity. Did you use triggers to manage the relationships of the application...

  • RE: Departmentalizing Databases

    It looks as if creating a common database with like tables is the way to go, if I have a small group of concurrent users. These tables will be...

  • RE: Departmentalizing Databases

    We still would use a database for each app but we would also have a database that would have data common to all applications. Most of the data would...

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