Viewing 10 posts - 196 through 205 (of 205 total)
What kind of recovery modell do you use? If full (as set in options) the
transaction log will grow and can be huge. Choose simple and then shrink the database...
November 24, 2005 at 1:33 am
Why use DTS or Access at all.
I do a lot of extractions to text files from different data sources with ADO and SQL and VB. There you can open a...
November 11, 2005 at 12:22 pm
I am not so familiar with VBscript but have made something similar in VB 6.
The script can read a text file with a user defined field and row delimiter
and print...
November 11, 2005 at 2:32 am
Having about the same problem this might help:
select substring(Firstname,2,len(Firstname)) from dbo.sellers
The first character can be anything.
November 9, 2005 at 2:11 am
Hi,
I used a similar approch as above:
1. Create a Execute SQL Task connection SQL server and a global variable like Maxdate.
2 SQL looks like select max(date) from etc
3 Execute this...
November 8, 2005 at 6:33 am
May be this can help:
If your Access database is on another server, you will need to ensure that Jet 4.0 is installed on the remote server, and that you know...
November 4, 2005 at 9:07 am
Hi,
There is another way to solve the need. The formula can then be in its original form =A3+B3 in column 3.
You can run an Excel makro...
October 27, 2005 at 9:08 am
Hi,
I had the same problem and one way to solve it is like:
Dim cnx As ADODB.Connection
Set cnx = New ADODB.Connection
Dim cmd As ADODB.Command
Set cmd = New ADODB.Command
cnx.Provider = "sqloledb"
cnx.Properties("Network Library").Value...
October 26, 2005 at 3:02 pm
Hi,
I don’t have a template or an application created sole in Access. What I have is an application which use...
October 26, 2005 at 4:37 am
Yes I did (by misstake)
The default recovery is full and switching to simple is good in
this case. Now I could shrink the database and will use simple.
September 8, 2005 at 4:15 pm
Viewing 10 posts - 196 through 205 (of 205 total)