Forum Replies Created

Viewing 15 posts - 1 through 15 (of 17 total)

  • RE: Last Modified

    Very neat! Thanks.

  • RE: Compare Two Tables

    Vijaya Kadiyala (4/8/2009)


    Jeff Moden (4/7/2009)


    I've not read all the posts on this thread, but why not just use replication for this?

    Hi jeff, this is not about replication.:-D Its about moving...

  • RE: Compare Two Tables

    until I build a System of Records applications

    I would like to take this issue into a different direction. As I mentioned above, I am in the planning phase...

  • RE: Compare Two Tables

    Is this domain type??

    No it is not. One of the legacy applications (A) uses 'Access_Level' as VARCHAR which only uses "1", "2", "3",....."8". The second application (B) uses the 'Access_Leval'...

  • RE: Compare Two Tables

    Do I have to use CAST/CONVERT when I change data type from [VARCHAR] to [int]? My VARCHAR has only values of "1", "2", "3", .... "8". I read something about...

  • RE: Compare Two Tables

    I have to ask, what are you going to do when you find out that they're equal or not?

    I was trying to find which records in table A that not...

  • RE: Compare Two Tables

    When you say compare, you want to find the records which are not in another table or find teh common records or !!

    In either case If you use FULL...

  • RE: Compare Two Tables

    Table 'ClientsDB.Users' is in 'MyClientsDB' database and table 'MarketingDB.Users' is in 'MyMarketingDB'. Table 'ClientsDB.Users' has 12,000 records that I want to copy to 'MarketingDB.Users'. I got the number of records...

  • RE: Compare Two Tables

    Awesome, worked like a charm.

  • RE: Random String on Record Creation

    Lynn Pettis (4/4/2009)


    First, I was slightly confused, as the code Lowell posted uses a CTE and this is in a SQL Server 7, 2000 forum.

    My bad. I am using SQL...

  • RE: Random String on Record Creation

    I changed the 20 to 64 and I am using this random string as a handshake token between two applications. My next task is to replicate this random string on...

  • RE: Random String on Record Creation

    I think I got it. I entered 'dbo.fn_RandomString()' and it worked.

  • RE: Random String on Record Creation

    Very nice sample. So now I have a function called 'fn_RandomString' and in the table field I set the 'Default Value for Binding' to 'fn_RandomString()'. But when records are inserted...

  • RE: Compare and Update Statment

    Ramesh (3/14/2009)


    Doesn't you mean to INSERT new records from TableA to TableB than to UPDATE? If not the latter case, then you have to do something like this.

    INSERT INTO...

  • RE: Compare and Update Statment

    I know that the following will do the comparison, but I'm not sure about the update in the same code.

    Select FilePath

    From tblArticles

    Where NOT EXISTS (Select URL

    From rating_urls

    Where tblArticles.filepath = rating_urls.url

    )

Viewing 15 posts - 1 through 15 (of 17 total)