Forum Replies Created

Viewing 15 posts - 1,966 through 1,980 (of 1,993 total)

  • RE: Sorting Problem

    et voila.

    my logo and hyperlink!!

    MVDBA

  • RE: Unique Columns - Absolute Novice Question!!

    That's correct. if you want a field to not allow duplicates (that isn't the entire primary key) then you need a contraint.

    if you are in the UK...

    MVDBA

  • RE: Is it possible to update database(SQL SERVER) with html contents from remote website

    antares is right.

    what happens if more than one person have the page open, do they all process the data?

    how about using the page to append to a Holding table...

    MVDBA

  • RE: Sorting Problem

    True.

    Just waiting to sort out all the other stuff as well (like a company logo etc...)

    just for you i'll sort it out today!

    MVDBA

  • RE: Serious problem

    or did you mena that the transaction log becomes fuill because of the amount of data that you are manipulating? if so switch to SIMPLE recovery mode and checkpoint the...

    MVDBA

  • RE: Serious problem

    you've obviously got to keep the data until you have migrated it into the new table.

    you should still keep your invoice table with the fields invoice_no,invoice type

    then how about...

    MVDBA

  • RE: Sorting Problem

    where did you decalare the @counter variable used in the following? unless i'm being really stupid here.

    update STable

    set counter = @counter,

    @counter = @counter + 1

    where sid=@sid

    and STypeID=@STypeID

    have you also...

    MVDBA

  • RE: how to convert SQL Server 7 to MS ACCESS ??

    I've always found that the best method is nearly always to PULL the data to the detination rather than PUSH it from the source.

    with that in mind the Access import/link...

    MVDBA

  • RE: Unique Columns - Absolute Novice Question!!

    the problem here is that you have placed an auto number in the companies table and defined it as the primary key.

    a primary key is defined as the entity that...

    MVDBA

  • RE: SQL server 2000 : strange bugs...

    if you want to keep up with the latest service pack versions download the micorosft baseline security analyser.

    it's free and will tell you all hotfixes and service packs that are...

    MVDBA

  • RE: Selecting records with same day and month as today

    out of interest is it quicker?

    MVDBA

  • RE: SQL Parser!

    all you are doing here is replicating what the SQL server is doing....

    if you are using ADO.net then you can send the query and return a recordset.

    the ado recordset...

    MVDBA

  • RE: Selecting records with same day and month as today

    this should help

    select xys from mytable where datepart(dd,mytable.datefield)=datepart(dd,getdate()) and datepart(mm,mytable.datefield)=datepart(mm,getdate())

    Cheers

    MVDBA

  • RE: Increment Field Value Automatically

    is this code unique? or does each user start at 0000 each year

    if so then you need to make a trigger for insert that uses something along the lines...

    MVDBA

  • RE: Beginning Administration

    if anyone has any requests for tutorials on specific matters, we are preparing some material for new SQL DBAs and Oracle DBAs making the transition.

    we would be happy to...

    MVDBA

Viewing 15 posts - 1,966 through 1,980 (of 1,993 total)