Viewing 12 posts - 1 through 12 (of 12 total)
Thanks for this, SSCrazy. I just implemented your solution because of one problem user who never shuts his queries. Old post but very helpful.
May 20, 2010 at 7:36 am
this is REALLY easy. Import the table into access. If it is a large table then import a portion via a make table query.
I assume you know how to link...
September 21, 2007 at 1:01 pm
Split depends on there being delimiters in the string else it just returns the string.
You will need to:
- determine the len of the string
intStringLength = len(mystring)
- grab each character with...
September 14, 2007 at 5:15 am
But they won't need any password if you don't add this to the shortcut: /wrkgrp Security.mdw
because the users default copy of security.mdw has an admin account which does not require...
March 22, 2006 at 6:46 am
Setting a password for the admin won't do anything. Anyone with a copy of system.mdw (that is everyone) will have an admin user in there w/out a password and will...
March 21, 2006 at 9:44 am
and 4, this book is the bible on Access security.
http://www.amazon.com/gp/product/1590591267/102-3462380-0344916?v=glance&n=283155
March 17, 2006 at 11:28 am
1) unless you deny access to user Admin you have not really accomplished anything.
2) You have to start Access via a shortcut that names the system.mdw that has the security...
March 17, 2006 at 11:27 am
DTS is very fast. If you can't stand the thought of using a friendly tool then use bcp.exe with is in the tools\binn folder.
August 4, 2005 at 12:26 pm
Search google for Rick Fischer Find and replace.
Buy the version you need (try the demo first) and search for that table name.
I've been using this product for years and it...
August 2, 2005 at 9:40 am
You can pull the date apart and rebuild it using datepart or year, month and day.
eg
mydate: month([somedate]) & "/" & day([somedate]) & "/" & year([somedate])
This is probably faster than format...
August 2, 2005 at 9:28 am
You should be able to schedule a DTS package in a SQL Server Agent job w/ below syntax.
Set the Type to operating system command
dtsrun /S servername /E /N packagename
October 1, 2004 at 1:58 pm
This is another way to do it assuming you have a table of ranges and descriptions of ranges.
First example displays the ranges. Second example displays range names.
SELECT dbo.MyRanges.LowValue, dbo.MyRanges.HighValue, COUNT(*)...
March 10, 2004 at 12:05 pm
Viewing 12 posts - 1 through 12 (of 12 total)