Rick, this is what happens:
I open an existing import specification via the wizard. Then I do my edits. Then I hit "Save As". As soon as I do that, you can see Access "scrolling" through the import spec fields and when it's done, my edits are gone! At this point, I can...
Thanks for your replies.
johnnymac43: I checked the permissions for MSysIMEXColumns and all changes were allowed.
RickSpr: I didn't observe that numeric suffix is added to the specification name once edited and then saved, but I did observe that SpecID value in MSysIMEXSpecs table increases...
I have an import specification for importing a fixed width text file. The record layout of this file changed and I'm trying to update the import specification.
I am able to edit the specification (add and rearrange fields), however, when I hit the save button all my modifications are...
Yes, supplying the database name solved the problem. The stored procedure is in the same db as the one I'm creating a view in, so I didn't think supplying a database name was not neccessary. Thanks.
Hello,
I tried to follow a workaround from some book for executing sp's from a view and created a linked server entry called LOOPBACK on my server that refers back to itself. Then I tried to create a view that has this statement:
SELECT * FROM OPENQUERY(LOOPBACK,'EXEC dbo.sp_test')
However...
Union query will fail if you try to combine two tables or queries that don't have the same number of fields. So, my suggestion is to make a query for each table pulling only the desired fields. If you want to pull a field from Products table that does not exist in your Import table, then you...
You can use a UNION query that would look something like this:
SELECT * FROM CurrentProducts
UNION SELECT * FROM PlannedProducts;
This is assuming both of your tables have similar fields.
Hope this helps,
Dusan
As far as I know, there is no way to password-protect an Access table. What you need to do is setup user-level security for your database. With this method, you can control which objects certain classes of users would be able to access. Go to Tools/Security and try playing with User-Level...
That didn't work either...your query would return only the 6/8 records so filter <6/8/2002 will return null.
The only way I figured how to do this is to:
1. Create a query that will filter according to specified criteria.
2. Create another query that uses the query above and apply MAX to...
Darrylle,
I took out the MAX from query and it did return 6/3/2002 record for 123456789 SSN (because 6/3 IS earlier than 6/8). I still think MAX is executed first and then the results are filtered according to specified criteria. I'm wondering if there is a way to reverse this order of...
Consider the following table:
SSN Record Name Member EffDate ENREFFDT
123456789 GCRDEVNT WORK 6/6/2002 20020603
123456789 GCRDEVNT WORK 6/8/2002 20020608
555555555 GCRDEVNT WORK 5/8/2002 20020603
555555555 GCRDEVNT WORK...
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.