Forum Replies Created

Viewing 15 posts - 466 through 480 (of 806 total)

  • RE: ETL From Clipper to SQL (and back again)?

    Cannot say I have but if Clipper supports ODBC, a quick search on google says it has drivers, then you should not have any problems getting data out.

    You problems will...

  • RE: XP_Regread Error 5 in SQL 2005

    As with any undocumented feature, MS has changed it.

    XP_reg... cannot be used to read outside of SQL Server's registry. You can read values that fall under SQL root but not...

  • RE: Analysing Deadlock

    Your key lies in the:

    2007-06-19 10:49:43.83 spid5s Input Buf: RPC Event: Proc [Database Id = 10 Object Id = 1373247947]

    and vitim:

    2007-06-19 10:49:43.83 spid5s Input Buf: RPC Event: Proc [Database Id...

  • RE: DTS Package Migrations from SQLServer 2000 to SQLServer 2005

    Once you have moved the DTS packages, you need to create a SSIS package and use the Execute DTS package task to run them either from the SQL store or...

  • RE: predicates and output lists and indexes

    To add some clarity to covered indexes.

    SQL 2005 has the nice feature called "include" which should be used.

    An index should have, in the index itself, columns used in the join...

  • RE: CacheMiss event in SQL Server 2005

    What was said in the article is correct. However, there are also other reasons why you would get a miss / hit.

    The old time fav is when people name their...

  • RE: Cdata Sections

    Only FOR XML EXPLICIT supports CDATA. You'll have to look in BOL for FOR XML EXPLICIT for some examples.

    For the query you have, it is nothing major to convert. Let...

  • RE: INSERT/UPDATE/DELETE in data flow?

    Hold yer horses.....

    Yes, SSIS does indeed deal with each row one at a time. Each row in a buffer that is... it is designed to do this and is fast...

  • RE: Cdata Sections

    You have to use XML EXPLICIT and specify CDATA for each column you want.

    SELECT

    1AS TAG,

    NULLAS parent,

    'Some <XML'AS [X!1!SourceID!CDATA]

    FROM

    DataSource AS X

    FOR XML EXPLICIT

  • RE: INSERT/UPDATE/DELETE in data flow?

    You _can_ use the OLE DB Command component but if dealing with many rows, it will be slow as SQL handles the rows one at a time.

    If you do have...

  • RE: How do i combine this data?

    Please never say "some sort of error" Tell us what the error is. it's the only way to help you.

    Two possible solutions:

    SELECT

    Documents.Name,

    purpose,

    Files.name,

    Files.FileSize,

    Files.Version,

    Files.DatePublished

    FROM

    Documents

    INNER JOIN(

    Select

    Max(Version) as Maxversion,

    DocumentID

    From

    Files

    Group By DocumentID) AS...

  • RE: DB restore percentage using T-SQL

    Hold on a sec...

    You say this is enormous. How big?

    The process SQL takes when doing a restore is first create the files and then seems to stamp them with something....

  • RE: DB restore percentage using T-SQL

    Not as far as I know.

    You can ensure that it is indeed running my checking it's SPID. Should say "Database Restore" but I don't know if there is a way...

  • RE: DB restore percentage using T-SQL

    I don't think you can retrieve the information from a different spid on the state of a restore but it you run the restore as script, you can give the...

  • RE: Variable Location on Input Table

    Another thought I had: Try and create a text file using a script task and the value obtained from the variable. if that does not work, it might at least...

Viewing 15 posts - 466 through 480 (of 806 total)