Forum Replies Created

Viewing 7 posts - 1 through 8 (of 8 total)

  • RE: help with an sql problem

    ok. let's start over 🙂

    the object of my task is to do the following:

    get all records that were not modified.

    if 2 files or more have the same name we are...

  • RE: help with an sql problem

    thnx for the help but that didn't work

    insert into MyTable (file_desc, is_modified) values ('a.txt',0)

    insert into MyTable (file_desc, is_modified) values ('a.txt',1)

    insert into MyTable (file_desc, is_modified) values ('b.txt',0)

    insert into MyTable...

  • RE: help with an sql problem

    sorry this is the correct code

    CREATE TABLE [dbo].[MyTable]

    (

    [rec_index] INT IDENTITY(1,1) PRIMARY KEY CLUSTERED,

    file_desc...

  • RE: help with an sql problem

    ok, i added this code fro creating and inserting values to the table

    CREATE TABLE [dbo].[MyTable]

    (

    [rec_index] INT IDENTITY(1,1) PRIMARY KEY CLUSTERED,

    ...

  • RE: help with an sql problem

    CREATE TABLE [dbo].[MyTable]

    (

    rec_index INT IDENTITY(1,1) PRIMARY KEY CLUSTERED,

    file_desc nvarchar(50),

    is_modified bit

    )

    this is my table.

    now...

  • RE: help with an sql problem

    This is very simple to do. How about setting up a little sample data to test the code against? One of the links in my sig will show you how...

  • RE: dynamic data types

    thx for the reply.

    wasn't familiar with the BOL option.

    🙂

Viewing 7 posts - 1 through 8 (of 8 total)