Viewing 15 posts - 7,051 through 7,065 (of 7,504 total)
- SQL2000 ? (sql7 has more pitfalls)
- If you only want to move user-db, you might consider to use the copy-database-wizard. This will have unavailability of the db at the...
April 30, 2004 at 12:08 am
there is migration-software on the marked. I just cannot recall the providers company-name.
The where present at last years PASS-conference in Seattle.
April 29, 2004 at 11:58 pm
You will have to alter the object-owner !
this may help out :
Select 'print '' object : ' + u.name + '.' + o.name + ''' ' + char(13) + ' go...
April 29, 2004 at 12:35 am
- keep in mind that sql also has to manage rowlayout, nullable columns also have the need for management-place (1 byte per 7 nullable columns). Check "dbcc showcontig" for your...
April 28, 2004 at 12:11 am
Every time sqlserver starts (or starts a db) it will check if data is consistent. ![]()
If it detects there were running transactions at...
April 27, 2004 at 11:48 pm
sysdepends may give you the inventory.
sp_refreshview @viewname = 'viewname' may perform what you are looking for
April 27, 2004 at 2:16 pm
- Because your goal is to move the db to a new server and postpone application-adaption, maybe you can consider to move the db's and at the old location only...
April 27, 2004 at 2:08 pm
When reindexing put your recovery model to bulk-logged or your log will grow by the size of the rebuild data.
.
But don't let this discourage...
April 27, 2004 at 2:02 pm
alter database myowndb set offline with ROLLBACK IMMEDIATE will do the job
April 27, 2004 at 1:54 pm
- your execution plan will clarify this
- as always " it depends " ![]()
* wich type of join are you using (inner /left-right...
April 27, 2004 at 4:20 am
rule n° 1 on every rdbms : tell your engine what you know ![]()
April 26, 2004 at 12:22 am
my 2ct
I suppose you've already checked :
- http://www.sqlservercentral.com/columnists/jsack/aweadventures.asp
- http://www.sql-server-performance.com/awe_memory.asp
- http://www.devarticles.com/c/a/SQL-Server/How-to-Perform-a-SQL-Server-Performance-Audit/4/
- use perfmon to check on your I/O activity
April 23, 2004 at 1:10 am
- SQL92-standard adaption.
- access-engine is not sqlserver-engine ![]()
- maybe it's on the wishlist for sql2k5 ![]()
April 23, 2004 at 12:45 am
select col1 + col1 as expr1, (col1 + col1 )* 2 as twice_expr1
from a_table
April 21, 2004 at 11:58 pm
Viewing 15 posts - 7,051 through 7,065 (of 7,504 total)