Viewing 15 posts - 1 through 15 (of 18 total)
Can you create triggers on TRUNCATE and DROP on this table to insert details on the caller into some new table?
April 20, 2006 at 6:42 am
Designating the column as Primary Key causes it to be used as the base lookup of any indexes that are applied to the table (by default it is also clustered,...
April 11, 2006 at 8:26 am
I'll agree with you that Paradox9 and SQL do not get along well! Not building in a mechanism to access passworded tables into the ODBC driver caused me some...
April 11, 2006 at 8:21 am
If you have source code and ability to modify/recompile your program, you could consider having your code raise an error on the SQL server with a specified error number. ...
April 5, 2006 at 6:12 am
Make sure you are referencing the owner of the stored procedure when you call it.
Ex.: SqlDataAdapter.SelectCommand.CommandText = "dbo.my_new_procedure"
SqlDataAdapter.SelectCommand.CommandText = "my_users_enterprise_manager_DB_Login_name.my_stored_procedure"
April 4, 2006 at 6:36 am
Sounds like a concurrency / record locking problem.
Make sure you are committing or rolling back your transactions in the code (and closing your SQLClient.Connection when you are done).
March 31, 2006 at 12:03 pm
While Norene is correct, there are other good reasons to separate your data files from your OS files, and a separate partition is better than the same partition, although a...
March 9, 2006 at 6:24 am
It is hard to make a recommendation without knowing what you are trying to accomplish.
You could DELETE the matching records from the child table first, this would allow you to...
March 6, 2006 at 9:46 am
For this purpuse, how about
IF Len(@a) Len(@b)
PRINT 'Not Equal'
PRINT 'Equal'
ELSE
PRINT 'Not Equal'
...
February 21, 2006 at 11:57 am
If the table is empty, TRUNCATE TABLE user.tablename will do it as well.
February 16, 2006 at 6:30 am
I have found there are a few things to watch out for when moving your tables into SQL, but for the most part what you say should be correct.
Do not...
February 16, 2006 at 6:18 am
Sounds like a perfect example of where executing a stored procedure to perform the updates would be the best solution for security and performance. Do you have access to...
January 13, 2006 at 6:20 am
If you do decide to stick with Access, the functionality you are looking for is called linked tables. The basic steps required would be to export all your data...
January 4, 2006 at 7:38 am
I agree with the others, using the barcode as your primary key is a great idea, as long as it can meet all your needs. If you do use...
December 29, 2005 at 8:28 am
Is the file system on their PC NTFS or FAT32? FAT32 drives have a maximum file size around 2GB if I remember correctly. (Can't copy single file DVD...
December 1, 2005 at 9:37 am
Viewing 15 posts - 1 through 15 (of 18 total)