Viewing 15 posts - 1,156 through 1,170 (of 2,062 total)
It could be that Access decides to pull the whole table in and than doing the find.
Usually it worth creating an extra "query" (on the linked table?) to search for...
December 6, 2007 at 11:48 am
You might be able to do that with "cross-database ownership chaining".
It is in the security tab of the server.
Beware of the security risk:
December 6, 2007 at 11:14 am
ericwilson54 (12/5/2007)
December 6, 2007 at 11:06 am
what is the compabilitymode of the database in sql 2005?
December 3, 2007 at 11:44 am
one sure way is to pass all datetimes in universal format
yyyymmdd hhnnss (yearsmonthsdays hoursminutessecondes)
instead of relying on SET DATEFORMAT that might change between language settings.
December 3, 2007 at 11:08 am
Where did you add the max transfersize? (is this replication?)
I can't find it in the BOL
BACKUP LOG { database_name | @database_name_var }
{
TO ...
December 3, 2007 at 10:57 am
I'm using sql agent too as backupper and restorer.
Prod server: sql agent daily backup database to networklocation...
Standby server: sql agent daily restore backup. If any error comes up the backup...
December 3, 2007 at 10:52 am
the ones i use mostly
are
sp_who2: to find out current connections and who's blocking who.
and
DBCC INPUTBUFFER (SPID)
December 3, 2007 at 10:48 am
There could also be an error with the replication agents.
December 3, 2007 at 10:46 am
Depending on the requirements
you could split the statisticsupdate over 2 days.
Using a cursors to loop through the objects and applying
UPDATE STATISTICS.
You could also reduce the sample size.
December 3, 2007 at 10:43 am
I guess the first is:
My computer->properties->advanced->performance->advanced
November 26, 2007 at 2:36 am
Have a look at
http://www.sql-server-performance.com/articles/per/advanced_sql_locking_p1.aspx
and http://www.sql-server-performance.com/tips/reducing_locks_p1.aspx
November 24, 2007 at 6:12 am
Failed to reserve contiguous memory of Size= 65536
Could be MemToLeaveArea is getting full. You can change the default from 256mb to 512mb with the -g switch
http://www.sqlnewsgroups.net/group/microsoft.public.sqlserver.server/topic1788.aspx
Overview of cumulative hotfixes for...
November 21, 2007 at 11:23 am
Have a look at:
http://www.sql-server-performance.com/tips/filegroups_p1.aspx
http://sqlblogcasts.com/blogs/tonyrogerson/archive/2006/08/17/948.aspx
November 21, 2007 at 4:40 am
You can use
DBCC DROPCLEANBUFFERS
Remarks
Use DBCC DROPCLEANBUFFERS to test queries with a cold buffer cache without shutting down and restarting the server.
and
DBCC FREEPROCCACHE
Remarks
Use DBCC FREEPROCCACHE to clear the procedure cache. Freeing...
November 20, 2007 at 4:54 am
Viewing 15 posts - 1,156 through 1,170 (of 2,062 total)