Viewing 8 posts - 16 through 23 (of 23 total)
That should be ok, I'll be creating the new database using SQL server management tools, not ms-access, I already know I can get basic connectivity from MSaccess to a 2005...
July 20, 2006 at 2:40 am
I don't know if there is a SP difference, this KB article references both the SP and dbo type problems, so it might be linked. http://support.microsoft.com/default.aspx?scid=kb;en-us;253180
July 18, 2006 at 5:20 am
Where is the DML operation being executed? In VB, from bound forms or from direct access to data objects?
If it is in VB then you can use standard VB error...
July 18, 2006 at 5:10 am
Hmmm, I could see a nice SQL profiler task happening for each server logging all actions carried out under your user id... Should thicken the swamp nicely!
July 14, 2006 at 7:41 am
Your focus needs to be on security on the SQL server. Any users that connect to the database should only have the rights necessary for them to do their job....
July 14, 2006 at 6:42 am
The alternative as mentioned earlier is to use xact_abort
SET xact_abort ON
BEGIN TRANSACTION
----Do your stuff here
COMMIT TRANSACTION
SET xact_abort OFF
xact_abort defaults to OFF so if an error occours inside a transaction it does not...
July 14, 2006 at 2:17 am
looks like the sum and square are the wrong way round i.e. sum of the squares and square of the sum...
In access you have
sum(([cur]-[avg])^2)
and...
July 13, 2006 at 11:56 am
The quick and dirty way is to cast from nvarchar to varchar then back to nvarchar, then compare with the original...
cast(cast(myfield as varchar) as nvarchar) myfield
Should be fine...
June 23, 2006 at 2:48 pm
Viewing 8 posts - 16 through 23 (of 23 total)