Viewing 10 posts - 121 through 130 (of 130 total)
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,...
May 24, 2005 at 1:48 am
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...
May 24, 2005 at 1:41 am
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...
April 20, 2005 at 7:51 am
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...
April 20, 2005 at 7:09 am
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...
April 20, 2005 at 5:01 am
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. ...
April 20, 2005 at 1:42 am
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...
April 19, 2005 at 9:55 am
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...
April 19, 2005 at 2:17 am
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
April 18, 2005 at 1:56 am
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
April 14, 2005 at 2:59 am
Viewing 10 posts - 121 through 130 (of 130 total)