Viewing 15 posts - 6,031 through 6,045 (of 7,501 total)
that's one of the things they did not alter for sql2005.
You still have to mention the filegroup for each index and there is no setable default (other then the normal...
November 2, 2006 at 4:01 am
A default instance for sql2000 uses the reserved name MSSQLSERVER;
If you stated MSSQLSERVER for your named instance, you may be in troubles !
Be specific and mention the names you've used.
October 31, 2006 at 8:09 am
maybe this will help out ....
I don't have the ref where I got it ![]()
CREATE TABLE #tables_usage (
name varchar(50) NULL,
rows varchar(15)...
October 31, 2006 at 3:26 am
here's a very good article ...
October 30, 2006 at 5:51 am
you may want to add following startup-parameters to your sqlserver so you get a glimp regarding deadlocks...
-T1204
-T3605
to activate this without stop/start :
--dynamisch activeren
dbcc traceon(1204, 3605, -1)
but add the...
October 27, 2006 at 8:58 am
- also upgrade to sp4.
- what kind of connections did you allow for sqlserver
(sqlserver serverproperties network-config)
October 27, 2006 at 6:36 am
...Not that I expect that anyone would run out of drive letters...
- consider a cluster-node with a couple of instances topology driv1-data1 drive2-data2 drive3-log drive4-backup .... You'll run out of...
October 27, 2006 at 1:53 am
If you want the identities to start using your specific startvalue, you should specify it when adding the identity-column. Not afterward with a checkident !
Check books online !
regarding the reseed,...
October 26, 2006 at 1:14 pm
or direcly
ALTER TABLE UsersImport ADD userIdInt int IDENTITY (99,1)
or build the alter dymamic :
declare @stmt varchar(4000)
select @stmt="ALTER TABLE UsersImport ADD userIdInt int IDENTITY (" + convert(varchar(15),@yourvar) + ',1)"
exec (@stmt)
October 26, 2006 at 1:11 pm
No problem
SQLServer publishes itself !
If you don't change the servername, there is no problem.
IPaddress changeing is no problem, as long as your applications do not connect directly using the IPaddress...
October 26, 2006 at 1:06 pm
...but existing objects could not make use of the secondary filegroup?...
- If you don't alter existing objects (tables or indexes), they will not use the new filegroup ! You have...
October 26, 2006 at 1:02 pm
- and off course there should be space at disk-level ![]()
- your db already has a filegroup named 'secondary'
choose another name. contact your...
October 26, 2006 at 11:36 am
- use xp_fixeddrives to check out your current freespace at the "local" drives.
(this proc may be secured)
- there may be file-latency when extending a datafile (from your primary filegroup)...
October 26, 2006 at 11:32 am
how about (b)locking issues, long running requests,...
sp_who2, sp_lock may help out
October 26, 2006 at 11:25 am
Viewing 15 posts - 6,031 through 6,045 (of 7,501 total)