Forum Replies Created

Viewing 15 posts - 18,736 through 18,750 (of 18,923 total)

  • RE: Single or Mutlible tables?

    You just answered it yourself, if you need to rewrite the whole application to allow for a design change that is not needed... and not approved by anyone here. ...

  • RE: MS SQL SERVER 2000 - SQL USER RELATED QUESTION

    what script did you use?

  • RE: Single or Mutlible tables?

    Now you seem to be comparing oranges with tangerines. Getting closer but it's still 2 different things. I'm currently working with a denormalized DB and it's a big...

  • RE: MS SQL SERVER 2000 - SQL USER RELATED QUESTION

    Yes the user will be able to do this permanently as long as he has inserts rights on the table.

    Obviously you need to grant access to all tables where the...

  • RE: transact sql

    I've already worked with a similar table design... but for weekdays (sunday to saturday). The table kept the days we visited a client for a given week. I...

  • RE: Single or Mutlible tables?

    Can't wait to see it too.. and Yoda's as well :-).

  • RE: Single or Mutlible tables?

    While it is true that too many indexes can cripple database performances (with many inserts and updates on the table), properly created indexes (like for foreign keys and there matching...

  • RE: Return a unique row

    I tested my code before posting it and it worked as my results show. I never said that the query wasn't possible to create, I was simply stating...

  • RE: Return a unique row

    btw I don't think Noeld' solution would work... try this :

    CREATE TABLE [Test] (

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

    [Col1] [int] NOT NULL ,

    [Col2] [int] NOT NULL ,

    CONSTRAINT...

  • RE: Return a unique row

    wouldn't it be better to simply erase the duplicate rows and adding a unique constraint so that the data is well maintained?

  • RE: Index seek vs index scan

    Is "procperiod" the primary key of the table? or actually

    Is "pk_taxdata" the index that covers the column "procperiod"?

    I doubt you can force the plan to use an irrelevant index.

    BTW...

  • RE: Database writing

    What do you mean by that?? Are you inserting small chunks of a really large transaction to avoid dead locks? Are you simply trying to reduce round trips...

  • RE: Index seek vs index scan

    Here's an emxemple :

    Select col1, col2

    FROM dbo.[Bon de travail] INNER JOIN

    ...

  • RE: DateDIff ???

    This is the part that does it :

    (SELECT TOP 1 [Start Date] FROM dbo.YourTable P2

    WHERE P2.Equipment_No = PMain.Equipment_No AND P2.[Start Date] > PMain.[Start Date] ORDER BY [Start Date])

    This...

  • RE: SQL Problem

    Use master

    GO

    CREATE TABLE [NullsPourcentage] (

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

    [DBName] [varchar] (128) COLLATE French_CI_AS NOT NULL ,

    [TableName] [varchar] (258) COLLATE French_CI_AS NOT NULL ,

    [ColName] [varchar] (256) COLLATE French_CI_AS...

Viewing 15 posts - 18,736 through 18,750 (of 18,923 total)