Forum Replies Created

Viewing 15 posts - 12,421 through 12,435 (of 14,953 total)

  • RE: General data -> database question

    UPDATE #tblUpload1

    Set Section = tblSection.ID

    FROM #tblUpload1

    inner join tblSection

    ON #tblUpload1.Section=tblSection.Description

    Should do it.

  • RE: New Transact-SQL/query techniques of SQL 2005/20

    MSDN.com has detailed data about what's changing between versions. What's new, what's removed, etc.

  • RE: BCP

    It probably wouldn't be that difficult to build something to do that in SSIS.

  • RE: Duplicate row Remove

    ;with CTE (Row, Col1, Col2, Col3) as

    (select row_number() over (partition by col1, col2, col3 order by col1),

    col1, col2, col3

    from dbo.Table)

    delete from cte

    where row >...

  • RE: Inner Joins:Nested versus cascaded

    Technically, they both tell SQL Server to do the same thing.

    The thing to keep in mind is that, most of the time, you aren't telling SQL Server how to do...

  • RE: NEED TO COMBINE Hdr and Dtl Tables Based on Some Status

    Is there any reason to not write a query (proc/view) in SQL, then use SSIS to export that?

  • RE: Running out of disk space?!

    I don't know of a way to make it use a different drive for that. May not be one.

  • RE: General SQL Server

    The first point isn't a question. Can't answer that.

    Second one, use Profiler and/or server traces. Find blocks/deadlocks, find long-running queries. Also use the system views to find...

  • RE: Raid

    Two questions to start with:

    First: What type of database(s) are you dealing with? Are they OLTP (lots of updates, inserts, deletes) or OLAP (very few updates, deletes, large inserts...

  • RE: Blocking with PAGEIOLATCH_UP

    What query?

  • RE: Extremely Slow SQL Processing

    Different CPU(s), different hardware, different server load, different data in tables. Lots of things could be the cause.

  • RE: Fragmetation

    You can't defrag a table that doesn't have a clustered index. Simple as that.

  • RE: Need Help

    I'm not sure what "SCCM 2007" is, but the error message is saying that there's a serious problem with your database and you'll probably have to recover it from a...

  • RE: SOAP Web Services for use in InfoPath

    Is the XML file simply huge? That's what the error message seems to indicate to me.

  • RE: database hosting services

    They're all going to be in that business.

    Why not install a copy of Dev Edition on a home PC? You mentioned you don't want to, but I'm curious, because...

Viewing 15 posts - 12,421 through 12,435 (of 14,953 total)