Viewing 15 posts - 1,666 through 1,680 (of 2,043 total)
like barsuk wrote
What are you current connection settings of
SET ARITHABORT ON|OFF (abort batch on error)
and SET ARITHIGNORE ON|OFF. (issue a warning but continue)
February 3, 2006 at 10:49 am
Welcome to the forum
Some guesses:
1) if you "link" the intercache table in Access, is there a primary key/unique index?
2) How fast does
SET NOCOUNT ON
SELECT A.ID, X.ID
FROM tblTable01AddOn...
February 3, 2006 at 10:46 am
logging on to the network with the account sql server/sql server agent runs under and try to put a file on the share
February 3, 2006 at 10:34 am
have a look at
http://www.sql-server-performance.com/articles_audit.asp
1)when to add memory: monitor Buffer Cache Hit Ratio
In OLTP applications, this ratio should exceed 90%, and ideally be over 99%. If your buffer cache hit...
February 2, 2006 at 12:43 pm
Is the sql server running on your pc?
What OS do you have?
February 2, 2006 at 4:57 am
In addition you can set a default value for the bit fields so that Access doesn't try to insert NULL in them.
January 30, 2006 at 12:22 pm
Better late than never.
1)
If sql server is the only running application, why don't you give it 7GB to work with?
->SQL Cache Hit Ratio - 87-90% is quite low.
Have a look...
January 30, 2006 at 11:49 am
Not sure but are all commands done within the same connection?
Can't find it immediately but the application is responsible for committing/rollbacking the transaction in case of an error.
When the connection...
January 30, 2006 at 11:35 am
Backup how often:
Depends on requirement (how much of the data may be gone, how critical is the database)
Depends on the time limit to restore a database. If your timewindow is...
January 30, 2006 at 11:16 am
This looks like a MSAccess matter.
Can we see the DLL of your Table? (use sql enterprise manager or sql analyzer to generate a create table script)
Does the linked table layout...
January 30, 2006 at 11:10 am
Who/what starts the job? sql agent?
January 30, 2006 at 10:18 am
I've gotten those duplicates too.
In this case it was a emergency recovery and the indexes were partially corrupted.
Solved by dropping all indexes, running a DBCC CHECKTABLE, removing the duplicates (in my...
January 26, 2006 at 12:25 pm
what kind of field is PersonId? char, varchar, int?
Are you checking the right table? (have you specified an owner like dbo)
January 26, 2006 at 12:18 pm
Viewing 15 posts - 1,666 through 1,680 (of 2,043 total)