Forum Replies Created

Viewing 15 posts - 6,151 through 6,165 (of 7,501 total)

  • RE: Automate a TSQL at a specified time?

    Thats exactly what SQLAgent is doing !

    Enterprise Manager / Management / SQLAgent / Jobs

    Create a new job, add a jobstep containing your SQLscript,...

  • RE: how to insert PK automatically?

    Works fine overhere ...

    CREATE TABLE [BillPayment] (

     [billpaymentId] [int] IDENTITY (1, 1) NOT NULL ,

     [billPaymentDate] [datetime] NULL ,

     [newBillBalance] [float] NULL ,

     [billAmount] [float] NULL ,

     CONSTRAINT [PK_BillPayment] PRIMARY KEY  CLUSTERED

     (

      [billpaymentId]

    &nbsp

  • RE: how to insert PK automatically?

    can you post your DDL ?

  • RE: A Look at GUIDs

    I like the article, but concering the newsequentialid ...

    can someone find the flaw in my testquery which proves they'r not sequential ???

    Declare

    @test-2 table

  • RE: VARCHAR(1000) vs. VARCHAR(MAX)

    ...Do note that you CAN include varchar(max) fields in indexes but you cannot create and index on a varchar(max) field itself....

    Indeed, including the varchar(max) column, you would aim for an...

  • RE: Upgrading 2000-25005 in place

    - keep in mind to rebuild all tables / indexes and to run sp_updatestats and DBCC updateusage.

    - indeed sp1 takes longer than the actual upgrade

    - IMO dts-migration has been enhanced...

  • RE: Upgrading 2000-25005 in place

    ... 5. Concerned about something I read in the Resource Guide. It seemed to indicate that any syntax referencing something like dbname.dbo.tablename would need to be corrected to boname.sys.tablename. Yet,...

  • RE: DENY SQL Server Login

    - you can deny the users rights to any object in the database. Check BOL !

    DENY

        { ALL [ PRIVILEGES ] | permission [ ,...n ] }

        {

            [ (...

  • RE: VARCHAR(1000) vs. VARCHAR(MAX)

    Scott Coleman explained it very clearly

    may i add that you cannot index a varchar(max) column...

  • RE: Shrink Database

    - I hope you're performing SQL backups using the T-sql backup statement or a maintenance job from sqlserver

    - If a db is "to big" that my have two causes :

      ...

  • RE: Problem upgrading mssql from 2000 to 2005

    Thanks for the feedback.

    in this case, you didn't get the answer overhere, but now others will !

  • RE: Restore v Detach/Attach

    actualy you can name your backup files whatever you want.

    And in fact, you can also name your sqlserver db-files whatever you want.

    If you stick with the guidelines of using the...

  • RE: Cluster IP Address Change

    Thumbs up for Collin !

    In theory it should be done using Cluster Administrator.

    "How to change the network IP addresses of SQL Server virtual servers" :

    http://support.microsoft.com/kb/244980/

    http://support.microsoft.com/kb/230356

    SQLServer itself does...

  • RE: Lots of unused space

    indeed sp_updatestats and dbcc updateusage should be part of your maintenance job !

    and like you experianced, should also be the first step when...

  • RE: Lots of unused space

    Keep in mind dbcc dbreindex will keep a lock on your table, so others may not be able to use it during the reindex !

     

    If you have updates/deletes on your...

Viewing 15 posts - 6,151 through 6,165 (of 7,501 total)