Viewing 15 posts - 4,036 through 4,050 (of 5,103 total)
Juanita,
My advice was based on access ADP projects not on ACCESS linked tables!
For linked tables you just have to rename the link as suggested by Logan above (which you...
March 17, 2005 at 1:45 pm
Which version of ms access is your developer using ?
As far as I remember you can change settings in the access front end so that the code can be transparent to...
March 17, 2005 at 12:59 pm
I would not run that code !
sp_changedbowner not only touches the sid from sysdatabases it also updates sysusers (sid, status and updatedate)
Try...
March 17, 2005 at 12:50 pm
exec sp_update_resume![]()
March 17, 2005 at 12:35 pm
Donald,
1. The "inserted" virtual table is an image (in structure) of the Table where the trigger was defined. Therefore it does not matter what field the application is sending to...
March 17, 2005 at 12:17 pm
If you think that the queries above are not simple how in the world the RAC4SQL package made up of a ton of code would seem simpler ?
March 17, 2005 at 11:57 am
Your initial code would do it just uncomment the where clause.
For Update triggers use the construct:
IF UPDATE(PkgCodeID)
begin
--- Your Code Here
end
and for the delete trigger just use the "deleted"...
March 17, 2005 at 11:53 am
Don't get me wrong, VB scripting is extremely easy to use and plays very well with DMO, ADO, WMI and CSCRIPT objects.
The problem comes in to play when you...
March 17, 2005 at 10:04 am
>> Forgive my ignorance, but what can PERL do what Windows scripting cannot do? <<
String parsing and manipulation power of Perl is very difficult to achieve on any of the...
March 17, 2005 at 9:40 am
Ramona,
If the column in which you have the xml is not a text column you may have a little easier path, but if it is
have a look at this (this...
March 17, 2005 at 9:34 am
Best approach I have found from most angles to this problem is to use 4 tinyint columns
Just my $0.02
March 17, 2005 at 9:24 am
nicki ,
I am sorry I wasn't explicit enough I put q in red and bold on my query and assumed it will...
March 17, 2005 at 9:15 am
SQL Server reads Extents which are nothing but eight Pages. The fuller the pages the less I/O it will have to perform to get the requested data.
HTH
March 17, 2005 at 8:36 am
That is exactly why this recomendation is for a system with a LARGE amount of processors!
March 17, 2005 at 8:28 am
Viewing 15 posts - 4,036 through 4,050 (of 5,103 total)