Viewing 15 posts - 76 through 90 (of 90 total)
The should be no problem so long as the User that the Job is run under has the applicable access rights. Are you user PONLEUR1\artmsss? This user would need Read/Write Access...
April 20, 2004 at 11:49 am
The short answer is yes. Here is an code example i just wrote using the Northwind DB:
CREATE PROC test_dyn_w_cur (@TableName as varchar(50))
AS
declare @SQL as nvarchar(2000)
Select @SQL = 'SELECT *...
April 19, 2004 at 5:33 pm
locks is an advanced option.
Use the sp_configure system stored procedure to change
the setting, you can change locks only when show advanced
options is set to 1. The setting takes...
April 16, 2004 at 5:27 pm
Try:
ALTER TABLE tablename
NOCHECK CONSTRAINT constraint_name
April 16, 2004 at 4:49 pm
I agree with stacenic. Look for why your package is returning an error. If all of the steps that are supposed to run in the package are completing...
April 16, 2004 at 4:20 pm
if putting quotes around your path will solve your problem, then:
""" & "c:\program files\etc\" & """
should do the trick.
April 14, 2004 at 5:16 pm
Try something like:
DELETE FROM TableX x
WHERE x.DateFields < GetDate() - 21
You may have to do some formatting of your date field if it contains time.
Select GetDate() - 21 yields 2004-03-24...
April 14, 2004 at 4:40 pm
Make sure you are running the same service pack for Analysis Services as is on the server. Also, Analysis Services Manager caches some logon info, it's amazing what rebooting the...
April 14, 2004 at 4:19 pm
Try installing the latest version of MDAC.
April 14, 2004 at 4:12 pm
Try vbSendMail (freeware). Its always worked great for me.
April 14, 2004 at 3:34 pm
Hi Andre, Try Editing the procs that are performing the insertions, updates, deletes on your production server to include NOLOCK in the select statements, e.g.,
Insert Into TableX(a,b,c,d)
Select a,b,c,d From...
April 14, 2004 at 3:29 pm
I've been challenged by this exact problem. The VFP OLE-DB Driver does seem a bit janky. I've had some success using the dBase 5 driver. Try that.
April 14, 2004 at 3:23 pm
Have you tried the SEEK method of the recordset object? i.e., rs.Seek
April 14, 2004 at 1:52 pm
The wildcard character in Access is '*' and not '%' like SQL Server or Oracle. See if this helps.
Pete
April 14, 2004 at 1:50 pm
It sounds like a permission issue. Since you are using Trusted_Connection, make sure that the logged in user has the appropriate permissions to access the Data Source. You may also...
April 14, 2004 at 1:41 pm
Viewing 15 posts - 76 through 90 (of 90 total)