Viewing 15 posts - 211 through 225 (of 325 total)
I transfer my Access DB to SQL Server 2000
the best way is to use Access 2002 (XP) upsizing wizard .... it trasfer data , RELATIONSHIPS, INDEXES, defaults and many other...
March 18, 2004 at 2:49 am
also you must take care that CREATE DEFAULT is usefull if you want to change the default for all columns from 1 place (from 0 to null as an example)...
March 9, 2004 at 1:37 am
of course to install MDAC and its SP to connect correctly to SQL Server..
also there is a topic in SQL BOL that is "Resetting the Suspect Status" that tells you...
March 8, 2004 at 6:09 am
what about:
1- installing SP1 on win XP clients
2- and installing SQL Server sp3a on server
3- install MDAC 2.7 RTM refresh on Server and clients machine ... and see...
March 8, 2004 at 2:35 am
I think the best thing is to write 1 Stored procedure (not to write the trigeer on it .. or on the table ..)
and this can be reashed by checking...
March 7, 2004 at 2:11 am
of course apply SP3a .. it solve a lot of several pugs in SQL Server 2000
did you make a scheduled maintainance plan to rearange your indeses and upade statistics...
March 7, 2004 at 12:31 am
of course the "timeout expired" is a deadlock message .. because one had gone into Lock waiting until its lock_timeout is finished.
but the problem you may face is...
March 4, 2004 at 6:49 am
you can write 2 stored procedure (1 for de attach and 1 for attach)
and make a Visual Basic Program that :
1- call deattach stored procedure
2- copy the file ......
March 4, 2004 at 6:41 am
if yuo are selecting data then the best way is to call a View ... or join 2 or more views together .. and in Views write "with (nolock)" in...
March 4, 2004 at 2:57 am
you can make a VB program that read from the registery and then use this in SQL
xp_cmdshell "c:\myVbProgram.exe"
March 4, 2004 at 2:53 am
does there anyone using these tables (select , update, ....) when you insert your data ... if yes .. then you have a locking problem from the users that uses...
March 4, 2004 at 2:40 am
if every thing in your calculation is okay .. and you are sure that there is no Overflow/Divide-by-zero error ... then restart your server ... the same error happened to...
March 4, 2004 at 2:33 am
use this in the query analyzer
ALTER DATABASE database SET MULTI_USER
This command returns access to the database to its normal operating state.
March 4, 2004 at 2:28 am
yes if you want the DB to keep running .. then the best solution is to make FGull backup in this moment .. then create the same DAtabase NAme on...
March 4, 2004 at 2:22 am
you have to (set lock_timeout) in SQL server query analyzer .. which sets the maximum amount of time that SQL Server allows a transaction to wait for the release of...
March 4, 2004 at 2:14 am
Viewing 15 posts - 211 through 225 (of 325 total)