Forum Replies Created

Viewing 15 posts - 6,661 through 6,675 (of 7,429 total)

  • RE: select

    You mean a subselect

    SELECT collist FROM (

    SELECT collist FROM tableX WHERE conditions

    ) AS subSelTable

    Which this is a bad example. Please be more specific about what you are trying to...

  • RE: SQLServer 7/Progress ODBC

    Have you tried throwing multiple queries at the same time to see if the connection doubles? Also try with another connection on a secound query fired at the same time....

  • RE: Exec SQL Task Output parameters

    ActiveX seems like a slution, but yes I would be interested in your code to see what is happening. I feel the dynamic SQL is blowing you out of the...

  • RE: SQLServer 7/Progress ODBC

    One may be for SQL admining the connection but I cannot find details on this. I will try to test against an Oracle machine here to see what happens. Also...

  • RE: How to run a fast querie from a HUGE Database

    Check your db for the proper indexes (look at the query's execution plan), make sure you have the statistics to make proper index choices, post you DDL for the table...

  • RE: Exec SQL Task Output parameters

    Can you provide a sample of your data and the DDL of the tables involved. Also give me the steps to recreate this problem as I have no issues.

    "Don't roll...

  • RE: Maximum row length issue in SQL2000

    If you know the maximum lenght is 4000 then varchar should be able to support you. Try it in another table with these characters. If not then ntext will support...

  • RE: Dead locks

    If the indexes cannot be dropped you may want to try an index rebuild and reset the fill factor so there is space in the index files to accomadate the...

  • RE: Text Export

    How are you try to export, BCP, DTS some other. With the BCP and DTS you can specific " as a delimiter for each column of data and it shoudl...

  • RE: Tables involved in a Full Table Scan ?

    I don't know of anyway you can do this thru PerfMon. You can however use Profiler to capture scans and sql statements to try and pinpoint these. I usuaully setup...

  • RE: Need to minimize procesing time..

    Yes, a little more detail about the table involved and how the data is related could help us understand how to get to your solution or point you down the...

  • RE: Create trigger & set a foreign key in system table

    Exactly what I you trying to do. I am afraid doing anything to some of the system tables like this could potentially blow you processing times out of the water...

  • RE: What kind of alerts do you use?

    I use several, mostly when job stuff fail. Also, server conditions exist that are not healthy. A number of replication alerts, log file full, Insufficient Resources (which has never occurred...

  • RE: Problem on restore database file to a new server

    This is untested and I do not guarantee it will work but it may.

    Run sp_helpsort to see the current information about sort order / collation however this is just for...

  • RE: Single-processor license on Multi-proc Machine

    No it is not legal, see this from SQL site

    quote:


    Processor license. Requires a single license for each CPU in the computer...

Viewing 15 posts - 6,661 through 6,675 (of 7,429 total)