Viewing 15 posts - 7,186 through 7,200 (of 7,472 total)
Actualy, I don't consider this to be nitpicking
Your comments do point to brainteaser issues, when one does not keep in mind sqlserver...
January 23, 2004 at 5:24 am
please elaborate.
You could take a log-backup and move that from your db-server.
Check recovery-models in BOL.
If your logfiles grow more than you'd expect, or you've performed an operation causing the...
January 23, 2004 at 5:15 am
dbo is the default schema SQLserver has implemented.
If a user (lets say User0 )performs "select * from mytable" SQLserver will first search an object...
January 23, 2004 at 1:40 am
Should result in 2 rows.
Is this on a multi-processor sqlserver-box ? try queryhint maxdop 1.
January 23, 2004 at 1:19 am
In addition to Allen Cui's reply :
' Select into/bulk copy' will alow non-logged operations.
This will have some recovery disadvantages.
Check SQL7 BOL.
found this in my sql-log :
The Select Into/Bulk Copy option...
January 23, 2004 at 12:44 am
Check these articles http://www.sqlservercentral.com/columnists/jsack/aweadventures.asp
http://www.sql-server-performance.com/awe_memory.asp
January 22, 2004 at 6:00 am
detatch db ... move files ... attatch db
January 22, 2004 at 4:46 am
UPDATE tbldummy SET datefield = convert(char(10), getdate(),121)
January 22, 2004 at 4:22 am
nice large index-columns
My guess is your primary file(-group) is autogrowing.
<<A new table is created everyday. >>
If...
January 22, 2004 at 4:13 am
- win-permon and sql-profiler can point you in the right direction.
- post the script (DB-(filegroups) + table + indexes + indexed views)
- is the db autogrowing during this load ?...
January 22, 2004 at 12:22 am
IMO, create FKsupporting-indexes for all FK-columns or columngroups (exact column-order as PK).
If you want more usable replies, post the DDL and expected stats.
<<searching in the a, b, c, d...
January 21, 2004 at 6:19 am
Awaiting new hardware and tackled most of the urgent problems yesterday
This seemd like a nice educational timespender
January 21, 2004 at 2:20 am
-- edit post -- is not working ??
also add this at the bottom of the script :
insert into T_SQLServerCentralUsers (uAlias) values('jonathaN')
results in :
Server:...
January 21, 2004 at 2:18 am
oops uncommented to much :
--Maybe this will help :
--drop table T_SQLServerCentralUsers
go
create table T_SQLServerCentralUsers(uidnr int identity(1,1) primary key,
uAlias varchar(128) COLLATE SQL_Latin1_General_CP1_CS_AS not null,
uDtMember datetime...
January 21, 2004 at 2:11 am
To much luxury is not good
Maybe this will help :
create table T_SQLServerCentralUsers(uidnr int identity(1,1) primary key,
uAlias varchar(128) COLLATE SQL_Latin1_General_CP1_CS_AS not null,
uDtMember datetime not...
January 21, 2004 at 1:37 am
Viewing 15 posts - 7,186 through 7,200 (of 7,472 total)