Forum Replies Created

Viewing 15 posts - 1,831 through 1,845 (of 7,429 total)

  • RE: how to stop an asp

    Depedns on how you want done. You could use the META TAG to force a refresh to a new page (this is a redirect client side). Or if they are...

  • RE: Connections Building Up

    Just keep in mind if you step on a SPID that is making changes then all the work it is doing is going to attempt to roll back. Also be...

  • RE: Transfer DB from SQL Server to Oracle

    As long as the tables are all built on the Oracle server and you have a compatible Oracle Client version installed (with the ole Oracle drivers) you can use DTS...

  • RE: What is an Arithmetic Overflow?

    Even simpler considering datetime values are stored as two part intergers.

    Datetime is two 4 byte integers (equal to two int datatypes together) and smalledatetime is two 2 byte intergers (equalk...

  • RE: order sequence in join statements

    Joins occurr before the where condition.

    And when multiple joins exist the occurr top to bottom, inside to outside.

    So say you have (IJ = Inner Join)

    SELECT

     ...

    FROM

     tA

    IJ

     tB

     IJ

      tC

     ON

      tC.Col = tB.Col

    ON

     tB.Col = tA.Col

    IJ

     tD

    ON

     tD.Col =...

  • RE: Temporary table disappears/connection drops sporadically

    You might need to run profiler on the server itself while you test from the place the issue is occurring so you can see what SQL sees happening.

  • RE: Data Types

    Not that I have seen. I however believe you should use the smallest datatype that meets your needs and uses the least amount of size when stored. Also consider the...

  • RE: restoring a SQL 7 backup to SQL 2000 database

    Other than sometimes needing to rebuild the indexes and updateing the stats I have had not particualr issue. However I have heard complaints of performance differences of 7 databases move...

  • RE: Call function passing in table variable

    From BOL "CREATE FUNCTION" article arguments section

    Is the parameter data type. All scalar data types, including bigint and sql_variant, can be used as a parameter for user-defined functions. The timestamp...

  • RE: How do we differentiate between USer tables and System Tables in SQL Server

    Just and additional comment.

    The

    status > 0

    is added to cover items like dtproperties which is a system table but marked as a user table. All system objects have a bitmask...

  • RE: anybody knows ASP

    Or optionally you can create input fields with a type of hidden for the same data so the user cannot touch them and they submit fine.

  • RE: impact of the sql server when at a time more than 10000 user browse the site

    Even thou SQl can handle a lot of connections you have to consider if 10000 connections hit SQL at the same time it will take roughly .3 GB of Memory...

  • RE: poor query performance with bind variables

    First off which did you run first. If you ran the one with the variables then the other you have to consider the fact cached data was involved (which to...

  • RE: Table was used by subreport

    Are you saying that table A contains the data as built for the report on the fly and is deleted between runs? If so then you potentially could have multiple...

  • RE: idea will it work

    If that meets you needs then yes, just schedule and be very happy. Just remember to keep in mind the balance between how often it would actualy run on average...

Viewing 15 posts - 1,831 through 1,845 (of 7,429 total)