Forum Replies Created

Viewing 15 posts - 2,386 through 2,400 (of 3,656 total)

  • RE: Join Dissimilar Tables - Reporting

    Well do the tables have the same structure, or does the retrieved information have the same structure?

    Can you make your SELECT statements so that they do return same structured recordsets?

    You...

  • RE: Product with multiple categories and subcategories... design options?

    I would be tempted to have a category table with:

    • CategoryId
    • ParentCategoryId
    • CategoryName
    • ...etc

    This means that your category table becomes an extensible tree so when when a marketing type decides they want sub-sub-sub-sub categories...

  • RE: returning several record sets

    It has been a while since I did old fashioned ASP but there was a NextRecordSet method on a RecordSet object.

    FirstRs.Open "YourProc"

    Set SecondRs = FirstRs.NextRecordset

  • RE: Unmatched DBO user accounts

    I tend to have the SA as the explicit dbo user. It is the one login that is common across all servers.

    You also have the db_owner role which multiple...

  • RE: This really gets my goat

    We have something called the data protection act in the UK which is a toothless attempt to block this sort of thing.

    Why toothless? Because the government decided to allow...

  • RE: Slow Patches

    My experience is that database servers tend to have more robust perimeter security than other servers.

    IIS on the other hand is more likely to be public facing and therefore be...

  • RE: Problems WIth Varchar 8000 Help please

    Not least because the blasted thing locks records blocking other processes as a result

  • RE: Store Procedure For Backup From Sql Server 2000

    Try RESTORE VERIFYONLY FROM

  • RE: Problems WIth Varchar 8000 Help please

    What tool are you using to enter the information?

    AN INSERT or UPDATE statement will allow the full 8,000 however I think there is a limit on the datagrid used by...

  • RE: Question on Stored Proc

    Well if your 3 databases are on one server I am not sure that it makes a difference.

    My personal preference from the information given would be to place the proc...

  • RE: Generating a Range

    Thanks to everyone who has posted.

    One feature I would really like to see on SQL Server Central (but it is in the big bucks content management arean) is the ability...

  • RE: Binary data pros/cons

    I've done a lot of work with web CMS and doc management systems and many of those store binary objects in the DB.

    This is done so that those systems can...

  • RE: Generating a Range

    I must admit I didn't look at the possibility of a high initial value but with a small range.

    Following it through logically all the selects would come into play so...

  • RE: difference..between PK and UK

    Certain facilities (such as full text indexes) require there to be a primary key on a table.

  • RE: cloning a table schema

    Quickest way, without indexes or scripting is

    SELECT * INTO tblReturn FROM tblDelivery WHERE 1=0

    not sure why you are getting the error you mention. If you are doing a search/replace...

Viewing 15 posts - 2,386 through 2,400 (of 3,656 total)