Forum Replies Created

Viewing 10 posts - 121 through 130 (of 130 total)

  • RE: Most effective way to convert row into column

    This is a really simple example. Hope it helps.

    DECLARE @datadetails TABLE

    (

    dataid int,

    [name] char(1),

    amount money

    )

    INSERT INTO @datadetails VALUES (1, 'X', 34500)

    INSERT INTO @datadetails VALUES (2, 'X', 1600)

    INSERT INTO @datadetails VALUES (3,...

  • RE: C# datagrid(windows forms)

    What do you mean by datagrid contents ? I assume you are binding something to the datagrid in order to display it. Is it a datatable, array, custom...

  • RE: Please help me out

    You need to check the SQL Mail set up. i.e.

    Right click the SQL Mail item under Support Services in Enterprise Manager. What is the Profile Name that is set up...

  • RE: Please help me out

    Syed,

    It now sounds like the reason it works from your machine but fails with the Access Denied when scheduled and now with the MAPI error is as I said the...

  • RE: Please help me out

    Syed,

    From the trace it seems you are successfully importing data until sometime after row 6000. I need more information on the error to help you find out what...

  • RE: Please help me out

    Also, another point, don't forget that when you run the DTS package manually it runs under YOUR security context i.e. the credentials under which you registered the sql server. ...

  • RE: Scheduled Task

    lol. Yes, I only put the create table and record stuff in to illustrate the point. As for scheduling, just put the script in a SQL Agent scheduled job...

  • RE: Scheduled Task

    This is a little script that creates a table, inserts some rows, then does the checking, emailing and updating you described. Obviously you will need to replace the table...

  • RE: Instal MSDE from the application

    Oscar,

    Depending on what application/installation package you're installing it with etc. it isn't too difficult.  This link for deploying Access based apps with MSDE might be useful.

    http://msdn.microsoft.com/library/default.asp?url=/library/en-us/dnacc2k/html/msdedeploy.asp

    Dan

  • RE: How to defult date column to null?

    You should be okay if you change your code to

    If txtDOB.Text.Trim().Length = 0 Then

    Session("DOB") = DBNull.Value

    Else

    Session("DOB") = txtDOB.Text 

Viewing 10 posts - 121 through 130 (of 130 total)