Forum Replies Created

Viewing 15 posts - 7,186 through 7,200 (of 7,472 total)

  • RE: GETDATE -> only DATE needed

    Actualy, I don't consider this to be nitpicking

    Your comments do point to brainteaser issues, when one does not keep in mind sqlserver...

  • RE: Deleting LOG FILES automatically

    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...

  • RE: database owners, users, roles, security

    dbo is the default schema SQLserver has implemented.

    If a user (lets say User0 )performs "select * from mytable" SQLserver will first search an object...

  • RE: BUG Or What Am I Missing

    Should result in 2 rows.

    Is this on a multi-processor sqlserver-box ? try queryhint maxdop 1.

  • RE: Recovery option for SQL 7

    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...

  • RE: Moving filegroups to a different disk

    detatch db ... move files ... attatch db

  • RE: GETDATE -> only DATE needed

    UPDATE tbldummy SET datefield = convert(char(10), getdate(),121)

  • RE: Bulk Insert

    nice large index-columns

    My guess is your primary file(-group) is autogrowing.

    <<A new table is created everyday. >>

    If...

  • RE: Bulk Insert

    - 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 ?...

  • RE: Help with indexes

    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...

  • RE: How are usernames checked?

    Awaiting new hardware and tackled most of the urgent problems yesterday

    This seemd like a nice educational timespender

  • RE: How are usernames checked?

    -- edit post -- is not working ??

    also add this at the bottom of the script :

    insert into T_SQLServerCentralUsers (uAlias) values('jonathaN')

    results in :

    Server:...

  • RE: How are usernames checked?

    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...

  • RE: How are usernames checked?

    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...

Viewing 15 posts - 7,186 through 7,200 (of 7,472 total)