Forum Replies Created

Viewing 15 posts - 121 through 135 (of 140 total)

  • RE: Connecting from ASP to SQL

    I would suppose that if your IIS server is not secure then any strategy for protecting your SQL server will be compromised in one way or anthoer.

    I read an article...

  • RE: Connecting from ASP to SQL

    This forumware keeps only giving me one line for msg...whats up with that?

  • RE: Connecting from ASP to SQL

    ASP is server side does not get sent anywhere. Clear or other wise.

  • RE: Closed Recordset returned?? WHY?

    Yes the NULL_yeilds_null off helped me find problem with var. Fixed that all is good. ty

  • RE: Closed Recordset returned?? WHY?

    Jonathan! You are the man! 

    SET CONCAT_NULL_YIELDS_NULL OFF

    Ya know after all the other troubles I had with this procedure I was almost all outta fight.  It was a fantastic learning event...

  • RE: Closed Recordset returned?? WHY?

    Yes I did that. The vars contain what they are supposed to. But the proc is working fine from query analyer only not from ADO.

    running this in qa performs the...

  • RE: Closed Recordset returned?? WHY?

    Yes I did that. The vars contain what they are supposed to. But the proc is working fine from query analyer only not from ADO.

    running this in qa performs the...

  • RE: Closed Recordset returned?? WHY?

    thats better...

    well unfortunetly i think the fetch is neccessary and in this case probable more efficient then any sql statement that if even possible would have too many joins. The...

  • RE: Closed Recordset returned?? WHY?

    hmmm forum only giving me one line for my reply

  • RE: Closed Recordset returned?? WHY?

    Well

  • RE: table var after fetch

    woot! Your solution got me moved ahead enough to find another problem that was causing it to not function.

    Within the WHILE I was doing an insert like this:

    insert into A...

  • RE: table var after fetch

    Thanks Gary!

    I modified your script to more closely resemble mine and it worked. I still am having troubles getting my main proc to work, but it's a big proc and...

  • RE: Idnetity Insert

    Sounds more like a data model issue then a syntax one. The tables are not actauly identical.

    Is there a requirement for the identity values of each row to be the same...

  • RE: Closed Recordset returned?? WHY?

    Had a brainwave this morning that since this proc calls two other proc's I should ensure that nocount is on in them as well. I had allot of hopes but...

  • RE: Closed Recordset returned?? WHY?

    I did a few tests:

    CREATE PROCEDURE [dbo].[tblVarTest] AS

    declare @TableVar table ( uid int)

    insert into @TableVar (uid) values (1)

    insert into @TableVar (uid) values (2)

    insert into @TableVar (uid) values (3)

    insert into @TableVar...

Viewing 15 posts - 121 through 135 (of 140 total)