Forum Replies Created

Viewing 15 posts - 421 through 435 (of 1,048 total)

  • RE: Know when to hold 'em

    GilaMonster (9/27/2011)


    Great for people from the East coast, far from great for anyone coming from Europe (or for that matter just about anywhere outside the USA). Oh well..

    Sadly, my company...

    The probability of survival is inversely proportional to the angle of arrival.

  • RE: Know when to hold 'em

    It's not my decision. I've argued for years it should be moved to serve the community. It is coming to Charlotte in 2013, IIRC

    Sounds great (only an hour away) see...

    The probability of survival is inversely proportional to the angle of arrival.

  • RE: Know when to hold 'em

    Maybe someday you'll have one these PASS summits on the east coast so I can attend.:cool:

    The probability of survival is inversely proportional to the angle of arrival.

  • RE: Index and table maintenance question

    If the column is not being used by the application and there is no intended future use of that column by the application then yes, by all means drop the...

    The probability of survival is inversely proportional to the angle of arrival.

  • RE: Same statement, sometimes executed as SQL batch, sometimes as RPC

    I suspect there is a configuration setting within the application or (probably) DB express that is different on some of the clients. Are the clients all using TCP/IP or Named...

    The probability of survival is inversely proportional to the angle of arrival.

  • RE: While coding, when do DB requests hit the "too many" or "too much" mark?

    Let the clients determine what they need by passing a parameter to a single stored procedure to obtain their data structures. One of the parameters to the procedure specifies how...

    The probability of survival is inversely proportional to the angle of arrival.

  • RE: Decrementing the rows fro every insertion

    Maintain an ID value table for obtaining the the next identifier. Obtain the next value from the table and insert into table wrapped in a transaction.

    a simplified example:

    declare @nextID int

    begin...

    The probability of survival is inversely proportional to the angle of arrival.

  • RE: Same statement, sometimes executed as SQL batch, sometimes as RPC

    Are these clients using ODBC data source to connect to SQL server? I suspect it is a connection configuration issue.

    The probability of survival is inversely proportional to the angle of arrival.

  • RE: return code from stored procedure in Sql management studio query window

    execute @retCode = [Asset5].[dbo].[RUN_JOB] @JOB_TO_RUN='testjob'

    select @retCode

    The probability of survival is inversely proportional to the angle of arrival.

  • RE: Intertia

    Inertia... makes me think of rearranging deck chairs on the Titanic.

    The probability of survival is inversely proportional to the angle of arrival.

  • RE: Application Session State Variables in the Database (Performance Issue)

    If you need to use SQL server as a platform for your session state management see if you can capitalize on certain of its performance characteristics.

    As an example, a page...

    The probability of survival is inversely proportional to the angle of arrival.

  • RE: Application Session State Variables in the Database (Performance Issue)

    jackimo (9/13/2011)


    Attached is the execution plan;

    Another issue is that no the old session variables are not aged off. The table has 10,000,000 + rows.

    Lordy. You should age the...

    The probability of survival is inversely proportional to the angle of arrival.

  • RE: Application Session State Variables in the Database (Performance Issue)

    If possible, change the clustered index to include both IID and SessionName and drop the non-clustered index on SessionName. Alsop make it a unique clustered index, based on...

    The probability of survival is inversely proportional to the angle of arrival.

  • RE: Application Session State Variables in the Database (Performance Issue)

    This is an ugly an inefficient way to maintain session state anyway, but the TSQL implementation is very poor also.

    To make a long story short, the table is made up...

    The probability of survival is inversely proportional to the angle of arrival.

  • RE: rollback the transaction created in sql server from visual basic

    Is the insert statement the only statement involved in the transaction? If so, and the query timer times out, the insert will be rolled back.

    If other statements are involved the...

    The probability of survival is inversely proportional to the angle of arrival.

Viewing 15 posts - 421 through 435 (of 1,048 total)