Forum Replies Created

Viewing 15 posts - 16,486 through 16,500 (of 18,926 total)

  • RE: Accessing a Database from a URL.

    Yes, but as I said, this is something that needs to be coded in some asp page. Or any web language. You need to find tutorials to do...

  • RE: Accessing a Database from a URL.

    What do you mean by Access???

    You can interact with a db with an asp page (or .net C#/ASP.net). But the access work is done on the server, not in...

  • RE: PKs using a Cursor

    You mean something like this??

    SELECT

    c.name

    , O.id

    , case when I.indid BETWEEN 1 AND 254 AND (I.status & 2048 = 2048 or I.Status = 16402 /*clustered + unique*/ and...

  • RE: Triggers and Indexes

    Can you briefly explain what you're trying to achieve in this trigger.

    Also do you expect this to work if you insert multiple rows at the same time??

  • RE: Combining SELECT statements

    Isnull(somecol, somevalue) will force the server to do a scan of an index, or worse, the table to fetch the rows. The 2nd where condition will permit a seek...

  • RE: Basic Index advice needed please?

    A couple of ideas :

    For the small table. I'd put the index even if you don't expect the table to be big... you never know, in 10 years,...

  • RE: Create view within DTS fails

    Stupid question warning : Does the table exists (on that connection) when you try to create the view?

  • RE: Triggers and Indexes

    That code looks wrong to me.. Can you post the whole trigger code?

  • RE: Function to return position of occurance in a string

    This is what Frank is talking about :

    CREATE FUNCTION [dbo].[Split] (@vcDelimitedString nVarChar(4000),

    @vcDelimiternVarChar(100) )

    /**************************************************************************

    DESCRIPTION: Accepts a delimited string and splits it at the specified

    delimiter points. Returns the individual items...

  • RE: Combining SELECT statements

    On a last note.. you're no gonna get any performance from a query like this. Myabe you could use a compound index on those 3 columns and use this...

  • RE: Combining SELECT statements

    I just don't see why. This could return 1,2 or 3 rows each time. Much simple to always return one, then use another form to edit the other...

  • RE: PKs using a Cursor

    What's the question??

  • RE: ADP Frontend

    We had the same problem here. Just ask the users to copy the file to their computer from a shared drive (where you release the new versions). That...

  • RE: Combining SELECT statements

    Then in that case, maybe I'd do two forms to present the data, one for each table, since anyways, you can't always update a view with multiple tables, or when...

  • RE: Recompile inline function

    If by object you mean table, when losing the dependecies chain, that's simply because the server creates a new table, copies the data to it, recreate the indexes and constraints,...

Viewing 15 posts - 16,486 through 16,500 (of 18,926 total)