SELECT Query Never Finishes - (problem Started After Moving SS2K5 SP2)

Oct 31, 2007



DML T-SQL works fine. But When I try to run SELECT query with joins that involves large tables (1.5 mil rows in each) in 2 databases, it instantly goes into "runnable" status and never finishes. It never finishes even when I have top 1 clause included. When I run insert or update that involves same tables, it works just fine.

Server facts:

W2003
SS 2K5 SP2
Db Comp level 90 (for all db)
MAXODP = 1 (8 processor box)


Recently moved databases from server that had SS 2000.


When this query was running on box with SS 2000, it took about a minute to finish, but it completed.

I already tried: changing MAXODP settings, using OPTION (maxdop 1) etc.

Anything else I can try.

View 4 Replies


ADVERTISEMENT

Query That Never Finishes In SQL2005 But Worked Fine In 2000

Nov 14, 2007

Hi,

I have a query which used to run fine on a rubbish SQL 2000 box in about a minute, but with SQL 2005 (SP2) it never finishes, even when left overnight. No errors in the logs or anything. It is the same database which was backed up from SQL 2000 and restored into 2005. Does anybody have any ideas?

Cheers
Steve


SELECT DISTINCT R1.RowVersionId, R2.EnumID AS A, R2.EnumID AS B, R4.EnumID AS C, R6.EnumID AS D, R8.EnumID AS E, R10.EnumID AS F, R12.EnumID AS G, R14.EnumID AS H

FROM

RowRuns AS R1

INNER JOIN XRunConfigEnum AS R2 ON R1.RunVersionID = R2.RunVersionId

INNER JOIN RowRuns AS R3 ON R1.RowVersionId=R3.RowVersionId

INNER JOIN XRunConfigEnum AS R4 ON R3.RunVersionID = R4.RunVersionId

INNER JOIN RowRuns AS R5 ON R1.RowVersionId=R5.RowVersionId

INNER JOIN XRunConfigEnum AS R6 ON R5.RunVersionID = R6.RunVersionId

INNER JOIN RowRuns AS R7 ON R1.RowVersionId=R7.RowVersionId

INNER JOIN XRunConfigEnum AS R8 ON R7.RunVersionID = R8.RunVersionId

INNER JOIN RowRuns AS R9 ON R1.RowVersionId=R9.RowVersionId

INNER JOIN XRunConfigEnum AS R10 ON R9.RunVersionID = R10.RunVersionId

INNER JOIN RowRuns AS R11 ON R1.RowVersionId=R11.RowVersionId

INNER JOIN XRunConfigEnum AS R12 ON R11.RunVersionID = R12.RunVersionId

INNER JOIN RowRuns AS R13 ON R1.RowVersionId=R13.RowVersionId

INNER JOIN XRunConfigEnum AS R14 ON R13.RunVersionID = R14.RunVersionId

WHERE

((R2.ParamID='ee72510e-3bab-49f6-1ff9-4d09cbe8670a' AND (R2.EnumID = '1a2868fb-72ef-e1d3-e79d-fbb5814ab481')))

AND

((R4.ParamID='7aadb3a4-3d13-8e0d-bfa4-4243ed1fdb35' AND (R4.EnumID = '745fb00c-0b16-7b4e-bf8f-da0f46777ca0')))

AND

((R6.ParamID='8c9aee3a-df1f-6ec5-131a-8fa0309ce1ff' AND (R6.EnumID = 'c7af1456-56bc-ba9c-f1e4-95cfd5542d10')))

AND

((R8.ParamID='61a714fa-8b20-1e7e-1adb-c680f72ddf0d'))

AND

((R10.ParamID='d9f0645c-e1be-b5c2-906f-ff3c5b9de0df'))

AND

((R12.ParamID='1916773f-1bf9-eea5-e702-5f293b3047a2'))

AND

((R14.ParamID='c37d4377-f6dd-69bc-16ef-bd06c76f400e'))

View 14 Replies View Related

SQL Server Admin 2014 :: Query To Get User Database Startup DateTime When It Started?

Feb 12, 2014

I would like to find Query to retrieve User DataBase Startup Time from SQL server that we see in the Sql Server Log.

I was able to find the Server Startup Time but not the individual Databases .

View 1 Replies View Related

Linked Server On Ss2k5

Apr 30, 2007

i think this feature is so crappy compare to the one from 2000.
Because once you create the linked server you are not able to see the tables as you can do it on 2000.

how do you expect someone to query the tables if its not there.

View 1 Replies View Related

SS2K5 Encryption - Use In HA And Test/UAT

Jan 3, 2007

I am in need of some answers on SS2K5 Encryption and possible issues when used in a clustered(replicated) configuration as well as having the encryption work on a Test/UAT configuration.

Here is the scenerio:

ServerA - is the Primary/Active server in a NeverFail cluster. NeverFail is a replication method like MS Clustering is except NF replicates the server to EXACT mirrors of each other.

ServerA has lets say 2 client DBs (actually we have 10-20 but for simplicity we will say 2.)

ServerB is the Secondary/Passive node.

First question is ... what issues may I run into if I encrypt the 2 clients needed data in the DBs and we then have a failover. I figure we should not see an issue if NeverFail is replicating everything including the machines SIDs.

Now for the second question:

We also have a Test/UAT server that we restore backups from the production clusters. On this server we have upwards of 60+ DBs from 8 different NeverFail clusters.

What are the issues that I may encounter in this scenerio?

I thought that each server generates its own master key per instance of SQL Server.

SO how will I bring that master key over to the Test/UAT server and use it knowing I will also need to have the other 7 master keys from the other 7 clusters?

I am sure this initial post will generate more conversation and probably will need more details on my behalf but I wanted to start out simple and dive into this issue.

Thanks ALL!

View 5 Replies View Related

Move FTC From SS2K To SS2K5

Jun 5, 2007

Morning,

Here is my scenario:

I have a SQL Server 2000 server with 10 clients.

Each client has 5 Full-Text Catalogs. For ease of explanation let€™s call the FTCs C1 thru C5.

Now each client€™s FTCs are named the SAME. So each client has FTCs named C1, C2, C3, C4 and C5.

I need to move the clients to our new SQL Server 2005 Enterprise server.

I can backup up the DB using the native SQL Server 2000 backup command but that of course does not back up the FTCs.

So once I restore the client DB over to the new SS2K5 server, how do I re-enable the FTCs and rebuild them so that they are the same as what was over on the SS2K server.

Also, after the first client is complete, will I run into a duplicate FTC error when I try to recreate the subsequent clients on the server since they all have the same named FTCs?

If so, how do I overcome this event?

Thanks for any and all help!

View 1 Replies View Related

Drop Constraint Never Finishes

Oct 13, 2002

I need to make some changes to tables in a database. To do this requires that I "alter table" and "drop constraint" All constraints drop properly, except one. The last one will churn away forever in query analyzer and never drop. I am unable to make the necessary changes until this completes. I am guessing that there is a data issue that is keeping the constraint from being dropped. Any ideas on how to proceed? Thanks!

View 2 Replies View Related

ActiveX Step Never Finishes.

Jul 23, 2007

I have an activex script which executes a query that never finishes. If I recompile the query in Management Studio before I run this step, then the step will *usually* work fine. This is the last step in a very long update process so the data has changed a great deal when this step executes.



The query always works fine in Management studio btw.



I am using BI studio to run the package.



I have tried placing a step before this that marks the query for recompilation but that doesnt seem to work. Any ideas how to resolve this?

View 3 Replies View Related

SS2k5 EE: SAN, Allocation Units, And All That Jazz

Feb 2, 2007

I've been doing some testing on the SAN/Disk subsystem over the past few days. I've run into something that is bugging me though. Hopefully someone here has run into the same thing or can answer.

*All LUNs have been created with default selects.

Test 1:
LUN1 (H:) - Created partition with diskmanager in win2003.
LUN2 (I:) - Created partition with diskpart and aligned the sectors at 64k.
Formatted both disks to have 4k in the allocation units.
Created a new blank DB on each disk.
With Profiler running, I ran a bulk insert for both disks and also ran a "Select count(*), Sum(total) from tableA" for both databases and cleared the proc cache inbetween.
Profiler showed the reads and writes io for the import and selects as a the same number (468721 reads and 312182 writes).

Test 2:
Deleted partitions
LUN1 (H:) - Created partition with diskmanager in win2003.
LUN2 (I:) - Created partition with diskpart and aligned the sectors at 64k.
Formatted both disks to have 8k in the allocation units.
Created a new blank DB on each disk.
With Profiler running, I ran a bulk insert for both disks and also ran a "Select count(*), Sum(total) from tableA" for both databases and cleared the proc cache inbetween.
Profiler showed the reads and writes io for the import and selects as a the same number (468721 reads and 312182 writes).

Test 3:
Same as test 2 but formatted with 64k allocation units.


So here is my question: Shouldn't the I/O go down or at least change if you change the allocation unit size for the disk?


Thanks,
Daniel

View 4 Replies View Related

Programmatically Enabling Sa Login In SS2K5?

Jun 29, 2006

Hello.

Our software applications require the sa login to be enabled. We have a .NET (C#) installation application that installs our software applications.

So, is there any way that we can programmatically enable the sa login for SQL Server 2005? Ideally, we'd like to code this into our installation application.

Thanks.

View 1 Replies View Related

Delay For Conflict Resolution In SS2K5

Jul 10, 2006

I have a couple of tables set up with column level tracking and using the "Subscriber Always Wins" conflict resolver.

I am still trying to work out why there is a conflict as the only updates to these rows happen at the subscriber.

What I am finding is that a conflict occurs and there appears to be a delay between the conflict being recognised and then resolved.

The reason I know there is a delay is because this is playing havoc with a data extract that relies on the updates from the subscriber.

For instance, I have a job on which the status is changed. That status change triggers an extract via BizTalk to another system. BizTalk, via an SQL adapter extracts the data from the server and I find that some of it is missing in the extract.

I go and look into the database at the raw data and find that the data is in fact there.

I have certain triggers running which set up export flags in the database to say this data should be exported. This works perfectly when there are no conflicts.

In each case where data has not been extracted, a conflict occurs.

Is there any way to guarantee that the conflict will be resolved at the same time as the synchronisation is complete - i.e. within the same transaction?

I thought replication was supposed to be a single transaction - you get it all or you get nothing.

I'm interested to hear from anyone who has experienced this behaviour.

Thanks

View 2 Replies View Related

SS2K5 64bit Dualcore CPUs Maxing Out

Mar 7, 2007

Hi Settled into the new giggero now. Since I have moved here we have upgraded our 4 SQL Servers to 2005 64 bit. All 2 proc dual core hyper threaded with 4GB RAM. Windows 2003. SQL Server compatibility level is 90. SP 1 and the CTP for SP2 are installed. We are hanging on with sp2. Maxdop is 0 (but has been tried on 2). Up to a score or so databases per machine, between 8 and 300 GB in size. Offline, reasonably heavy duty ETL batch processing. Since upgrading we have had trouble with the CPUs intermittently maxing out at 100% usage. This is when intensive routines are run. We know that many of these routines are crappy (SELECT... INTO creating tables with 10s or 100s of millions of rows, cursors etc.) and we are rewriting the code. Estimated time of completion of code review and rewrite is end of next year so we can't wait that long. The same poor code ran (albeit slowly) in SS2k but is causing the server to lock up now it is being run on SS2k5. Symptoms include connection attempts timing out, routines running very slowly. Existing connections can continue to make requests but these are very slow. If we get on the box the CPUs are at a never wavering 100% utilisation. This continues until intervention is taken, often restarting the service. We have left a maxed out box alone over a weekend and it was still in the same state when we came in on Monday. Nothing to glean from the error logs (AFAIK). Obviously the long term fix is to get the code sorted but this is an ongoing process (in fact it is one of the reasons I was hired). Our immediate concern is to get the servers back up to the sort of performance we were realising before we upgraded. Does anyone have any ideas?As ever eternal gratitude and a crate of virtual beer for any help :D

View 11 Replies View Related

Installing SS2K5 SP1 On Windows 2003 Server R2

Jan 8, 2007

Has anyone run into the issue of installing SP1 on a 2003 R2 server?

I have seen a post or two on other sites but I cannot seem to find them again.

Install goes great up until it comes to the upgrading of SSIS (Integration Services).

At that point is fails with the error of:

A recently applied update, KB913090, failed to install.

This is a dialog box that I hit the "send error report" button. It then goes to the upgrading of the Client Components (CC) and fails with the same error message of:

A recently applied update, KB913090, failed to install.

The ugrade the continues after I hit the same "send error report"button.

ALL of the other steps complete with SUCESSFULLY. Only the SSIS and Client Components show a failed status in the Installation Prog

In the Installation Complete screen, I can highlight both the SSIS and CC and see an additional error of:

Unable to install Windows Installer MSP file

I then can hit the View Log button (which I have done for the SSIS step) and see the error log but I am having a tough time making heads or tails of it.

I have attached the output from the SSIS error log below.

I have a couple of questions:

1. Is the install of SP1 good for all the other steps that completed successfully

2. Has anyone had issues with installing SP1 on a Windows 2003 R2 server? I have installed SP1 on other Windows 2003 servers NOT running R2 and it ran like a champ.

Thanks ALL!

====== ERROR LOG FROM SSIS UPGRADE ============================================

01/07/2007 19:23:23.247 ================================================================================
01/07/2007 19:23:23.247 Hotfix package launched
01/07/2007 19:23:23.747 Product discovery successfully completed during the install process for DTS
01/07/2007 19:23:23.762 SP Level check successfully completed during the install process for DTS
01/07/2007 19:23:23.778 Product language check successfully completed during the install process for DTS
01/07/2007 19:23:23.793 Product version check successfully completed during the install process for DTS
01/07/2007 19:23:23.825 Command-line instance name check completed during the install process
01/07/2007 19:23:23.840 Baseline build check completed during the install process
01/07/2007 19:28:41.393 Attempting to install instance: DTS
01/07/2007 19:28:41.408 Attempting to install target: AUS02DB13
01/07/2007 19:28:41.440 Attempting to check for locked files: sqlrun_dts.msp
01/07/2007 19:28:41.502 Attempting to check for locked files: \AUS02DB13g$2fe15a257eaedfc36c121fc912HotFixDTSFilessqlrun_dts.msp
01/07/2007 19:28:41.518 Creating MSP locked file check log at: C:WINDOWSHotfixDTS9LogsDTS9_Hotfix_KB913090_sqlrun_dts.msp.out
01/07/2007 19:28:48.799 MSP returned 1602: The user cancels installation.
01/07/2007 19:28:49.017 Successfully checked file: \AUS02DB13g$2fe15a257eaedfc36c121fc912HotFixDTSFilessqlrun_dts.msp
01/07/2007 19:28:49.033 Successfully opened registry key: SystemCurrentControlSetControlSession Manager
01/07/2007 19:28:49.064 Successfully read registry key: PendingFileRenameOperations
01/07/2007 19:28:49.080 Multi-string values:
01/07/2007 19:28:49.096 ??g:a4be8c9b1bce3ffa869bbb5137
01/07/2007 19:28:49.111 Failed to read version information for the following file: C:Program FilesMicrosoft SQL ServerShared9.0.2047.0
C:Program FilesMicrosoft SQL ServerShareddbghelp.dll
01/07/2007 19:28:49.127 Failed to read associated hotfix build information for the following file: C:Program FilesMicrosoft SQL ServerSharedSqlDumper.exe
01/07/2007 19:28:49.142 Failed to read associated hotfix build information for the following file: C:Program FilesMicrosoft SQL ServerSharedSqlDumper.exe
01/07/2007 19:28:49.158 Failed to read associated hotfix build information for the following file: C:Program FilesMicrosoft SQL ServerSharedSqlDumper.exe
01/07/2007 19:28:49.174 Failed to read associated hotfix build information for the following file: C:Program FilesMicrosoft SQL ServerSharedsqlsqm.exe
01/07/2007 19:28:49.205 Failed to read version information for the following file: E:MSSQLMSSQLSS2K5DTSBinndtsinstall.exe
01/07/2007 19:28:49.221 Failed to read associated hotfix build information for the following file: E:MSSQLMSSQLSS2K5DTSPipelineComponentsResourcesmsmdsrv.rll
01/07/2007 19:28:49.236 Failed to read associated hotfix build information for the following file: E:MSSQLMSSQLSS2K5DTSPipelineComponentsResourcesmsmdsrv.rll
01/07/2007 19:28:49.252 Failed to read associated hotfix build information for the following file: E:MSSQLMSSQLSS2K5DTSPipelineComponentsResourcesmsmdsrv.rll
01/07/2007 19:28:49.267 Failed to read associated hotfix build information for the following file: E:MSSQLMSSQLSS2K5DTSPipelineComponentsmsmdlocal.dll
01/07/2007 19:28:49.283 Failed to read associated hotfix build information for the following file: E:MSSQLMSSQLSS2K5DTSPipelineComponentsmsmdlocal.dll
01/07/2007 19:28:49.299 Failed to read associated hotfix build information for the following file: E:MSSQLMSSQLSS2K5DTSPipelineComponentsmsmdlocal.dll
01/07/2007 19:28:49.314 Failed to read version information for the following file: E:MSSQLMSSQLSS2K5DTSPipelineComponents9.0.2047.0
C:Program FilesMicrosoft SQL ServerSharedmsmdlo~1.dll
01/07/2007 19:28:49.330 Failed to read associated hotfix build information for the following file: C:WINDOWSassemblyGAC_MSILMicrosoft.SqlServerCe.Dts.Provider9.0.242.0__89845dcd8080cc91Microsoft.SqlServerCe.Dts.Provider.dll
01/07/2007 19:28:49.361 Failed to read associated hotfix build information for the following file: C:WINDOWSassemblyGAC_MSILMicrosoft.SqlServer.DataStorage9.0.242.0__89845dcd8080cc91Microsoft.SqlServer.DataStorage.dll
01/07/2007 19:28:49.377 Failed to read associated hotfix build information for the following file: C:WINDOWSassemblyGAC_MSILMicrosoft.SqlServer.CustomControls9.0.242.0__89845dcd8080cc91Microsoft.SqlServer.CustomControls.dll
01/07/2007 19:28:49.392 Failed to read associated hotfix build information for the following file: C:WINDOWSassemblyGAC_MSILMicrosoft.SqlServer.WizardFramework9.0.242.0__89845dcd8080cc91Microsoft.SqlServer.WizardFramework.dll
01/07/2007 19:28:49.408 Failed to read associated hotfix build information for the following file: C:WINDOWSassemblyGAC_MSILMicrosoft.AnalysisServices.Xmla9.0.242.0__89845dcd8080cc91Microsoft.AnalysisServices.XMLA.dll
01/07/2007 19:28:49.424 Failed to read associated hotfix build information for the following file: C:WINDOWSassemblyGAC_MSILMicrosoft.SqlServer.OlapEnum9.0.242.0__89845dcd8080cc91Microsoft.SqlServer.OlapEnum.dll
01/07/2007 19:28:49.439 Failed to read version information for the following file: E:MSSQLMSSQLSS2K5DTSTasksenMicrosoft.SqlServer.ActiveXScriptTask.xml
01/07/2007 19:28:49.455 Failed to read associated hotfix build information for the following file: C:WINDOWSassemblyGAC_32Microsoft.SqlServer.ActiveXScriptTaskUtil9.0.242.0__89845dcd8080cc91Microsoft.SqlServer.ActiveXScriptTaskUtil.dll
01/07/2007 19:28:49.470 Failed to read associated hotfix build information for the following file: C:WINDOWSassemblyGAC_32Microsoft.SqlServer.ActiveXScriptTaskUtil9.0.242.0__89845dcd8080cc91Microsoft.SqlServer.ActiveXScriptTaskUtil.dll
01/07/2007 19:28:49.486 Failed to read associated hotfix build information for the following file: C:WINDOWSassemblyGAC_32Microsoft.SqlServer.ActiveXScriptTaskUtil9.0.242.0__89845dcd8080cc91Microsoft.SqlServer.ActiveXScriptTaskUtil.dll
01/07/2007 19:28:49.517 Failed to read associated hotfix build information for the following file: C:WINDOWSassemblyGAC_MSILMicrosoft.SqlServer.ActiveXScriptTask9.0.242.0__89845dcd8080cc91Microsoft.SqlServer.ActiveXScriptTask.dll
01/07/2007 19:28:49.533 Failed to read version information for the following file: E:MSSQLMSSQLSS2K5DTSBinnMicrosoft.SqlServer.ActiveXScriptTaskUtil.dll
01/07/2007 19:28:49.549 Failed to read associated hotfix build information for the following file: E:MSSQLMSSQLSS2K5DTSTasksMicrosoft.SqlServer.ActiveXScriptTask.dll
01/07/2007 19:28:49.580 Failed to read associated hotfix build information for the following file: C:WINDOWSassemblyGAC_MSILMicrosoft.DataTransformationServices.Controls9.0.242.0__89845dcd8080cc91Microsoft.DataTransformationServices.Controls.DLL
01/07/2007 19:28:49.595 Failed to read version information for the following file: E:MSSQLMSSQLSS2K5DTSBinnDTSWizard.exe
01/07/2007 19:28:49.611 Failed to read associated hotfix build information for the following file: E:MSSQLMSSQLSS2K5SDKAssembliesMicrosoft.SqlServer.TxScript.dll
01/07/2007 19:28:49.627 Failed to read associated hotfix build information for the following file: E:MSSQLMSSQLSS2K5DTSPipelineComponentsMicrosoft.SqlServer.TxScript.dll
01/07/2007 19:28:49.642 Failed to read associated hotfix build information for the following file: C:WINDOWSassemblyGAC_MSILMicrosoft.SqlServer.TxScript9.0.242.0__89845dcd8080cc91Microsoft.SqlServer.TxScript.dll
01/07/2007 19:28:49.674 Failed to read associated hotfix build information for the following file: E:MSSQLMSSQLSS2K5DTSPipelineComponentsTxSampling.dll
01/07/2007 19:28:49.689 Failed to read associated hotfix build information for the following file: E:MSSQLMSSQLSS2K5DTSPipelineComponentsTxSampling.dll
01/07/2007 19:28:49.705 Failed to read associated hotfix build information for the following file: E:MSSQLMSSQLSS2K5DTSPipelineComponentsTxSampling.dll
01/07/2007 19:28:49.720 Failed to read associated hotfix build information for the following file: E:MSSQLMSSQLSS2K5DTSPipelineComponentsTxRowCount.dll
01/07/2007 19:28:49.752 Failed to read associated hotfix build information for the following file: E:MSSQLMSSQLSS2K5DTSPipelineComponentsTxRowCount.dll
01/07/2007 19:28:49.767 Failed to read associated hotfix build information for the following file: E:MSSQLMSSQLSS2K5DTSPipelineComponentsTxRowCount.dll
01/07/2007 19:28:49.783 Failed to read associated hotfix build information for the following file: C:WINDOWSassemblyGAC_MSILMicrosoft.SqlServer.Dts.DtsClient9.0.242.0__89845dcd8080cc91Microsoft.SqlServer.Dts.DtsClient.dll
01/07/2007 19:28:49.799 Failed to read associated hotfix build information for the following file: C:WINDOWSassemblyGAC_MSILMicrosoft.SqlServer.DataReaderDest9.0.242.0__89845dcd8080cc91Microsoft.SqlServer.DataReaderDest.dll
01/07/2007 19:28:49.814 Failed to read version information for the following file: E:MSSQLMSSQLSS2K5DTSBinnMicrosoft.SqlServer.Dts.DtsClient.dll
01/07/2007 19:28:49.830 Failed to read associated hotfix build information for the following file: E:MSSQLMSSQLSS2K5DTSPipelineComponentsMicrosoft.SqlServer.DataReaderDest.dll
01/07/2007 19:28:49.830 Failed to read version information for the following file: E:MSSQLMSSQLSS2K5DTSTasksenMicrosoft.SqlServer.TransferSqlServerObjectsTask.xml
01/07/2007 19:28:49.845 Failed to read associated hotfix build information for the following file: C:WINDOWSassemblyGAC_MSILMicrosoft.SqlServer.TransferSqlServerObjectsTask9.0.242.0__89845dcd8080cc91Microsoft.SqlServer.TransferSqlServerObjectsTask.dll
01/07/2007 19:28:49.877 Failed to read associated hotfix build information for the following file: E:MSSQLMSSQLSS2K5DTSTasksMicrosoft.SqlServer.TransferSqlServerObjectsTask.dll
01/07/2007 19:28:49.892 Failed to read version information for the following file: E:MSSQLMSSQLSS2K5DTSTasksenMicrosoft.SqlServer.TransferStoredProceduresTask.xml
01/07/2007 19:28:49.908 Failed to read version information for the following file: E:MSSQLMSSQLSS2K5DTSTasksenMicrosoft.SqlServer.TransferLoginsTask.xml
01/07/2007 19:28:49.924 Failed to read version information for the following file: E:MSSQLMSSQLSS2K5DTSTasksenMicrosoft.SqlServer.TransferJobsTask.xml
01/07/2007 19:28:49.939 Failed to read version information for the following file: E:MSSQLMSSQLSS2K5DTSTasksenMicrosoft.SqlServer.TransferErrorMessagesTask.xml
01/07/2007 19:28:49.970 Failed to read version information for the following file: E:MSSQLMSSQLSS2K5DTSTasksenMicrosoft.SqlServer.TransferDatabasesTask.xml
01/07/2007 19:28:49.986 Failed to read associated hotfix build information for the following file: E:MSSQLMSSQLSS2K5DTSTasksMicrosoft.SqlServer.TransferStoredProceduresTask.dll
01/07/2007 19:28:50.002 Failed to read associated hotfix build information for the following file: E:MSSQLMSSQLSS2K5DTSTasksMicrosoft.SqlServer.TransferLoginsTask.dll
01/07/2007 19:28:50.002 Failed to read associated hotfix build information for the following file: E:MSSQLMSSQLSS2K5DTSTasksMicrosoft.SqlServer.TransferJobsTask.dll
01/07/2007 19:28:50.033 Failed to read associated hotfix build information for the following file: E:MSSQLMSSQLSS2K5DTSTasksMicrosoft.SqlServer.TransferErrorMessagesTask.dll
01/07/2007 19:28:50.033 Failed to read associated hotfix build information for the following file: E:MSSQLMSSQLSS2K5DTSTasksMicrosoft.SqlServer.TransferDatabasesTask.dll
01/07/2007 19:28:50.049 Failed to read associated hotfix build information for the following file: E:MSSQLMSSQLSS2K5DTSTasksMicrosoft.SqlServer.TransferObjectsTask.dll
01/07/2007 19:28:50.064 Failed to read associated hotfix build information for the following file: C:WINDOWSassemblyGAC_MSILMicrosoft.SqlServer.TransferStoredProceduresTask9.0.242.0__89845dcd8080cc91Microsoft.SqlServer.TransferStoredProceduresTask.dll
01/07/2007 19:28:50.080 Failed to read associated hotfix build information for the following file: C:WINDOWSassemblyGAC_MSILMicrosoft.SqlServer.TransferLoginsTask9.0.242.0__89845dcd8080cc91Microsoft.SqlServer.TransferLoginsTask.dll
01/07/2007 19:28:50.095 Failed to read associated hotfix build information for the following file: C:WINDOWSassemblyGAC_MSILMicrosoft.SqlServer.TransferJobsTask9.0.242.0__89845dcd8080cc91Microsoft.SqlServer.TransferJobsTask.dll
01/07/2007 19:28:50.111 Failed to read associated hotfix build information for the following file: C:WINDOWSassemblyGAC_MSILMicrosoft.SqlServer.TransferErrorMessagesTask9.0.242.0__89845dcd8080cc91Microsoft.SqlServer.TransferErrorMessagesTask.dll
01/07/2007 19:28:50.111 Failed to read associated hotfix build information for the following file: C:WINDOWSassemblyGAC_MSILMicrosoft.SqlServer.TransferDatabasesTask9.0.242.0__89845dcd8080cc91Microsoft.SqlServer.TransferDatabasesTask.dll
01/07/2007 19:28:50.127 Failed to read associated hotfix build information for the following file: C:WINDOWSassemblyGAC_MSILMicrosoft.SqlServer.TransferObjectsTask9.0.242.0__89845dcd8080cc91Microsoft.SqlServer.TransferObjectsTask.dll
01/07/2007 19:28:50.142 Failed to read associated hotfix build information for the following file: C:WINDOWSassemblyGAC_MSILMicrosoft.SqlServer.DtsTransferProvider9.0.242.0__89845dcd8080cc91Microsoft.SqlServer.DtsTransferProvider.dll
01/07/2007 19:28:50.158 Failed to read associated hotfix build information for the following file: C:WINDOWSassemblyGAC_MSILMicrosoft.SqlServer.TableTransferGeneratorTask9.0.242.0__89845dcd8080cc91Microsoft.SqlServer.TableTransferGeneratorTask.dll
01/07/2007 19:28:50.174 Failed to read associated hotfix build information for the following file: E:MSSQLMSSQLSS2K5DTSBinnMicrosoft.SqlServer.DtsTransferProvider.dll
01/07/2007 19:28:50.189 Failed to read associated hotfix build information for the following file: E:MSSQLMSSQLSS2K5DTSTasksMicrosoft.SqlServer.TableTransferGeneratorTask.dll
01/07/2007 19:28:50.189 Failed to read associated hotfix build information for the following file: E:MSSQLMSSQLSS2K5DTSPipelineComponentsTxTermExtraction.dll
01/07/2007 19:28:50.205 Failed to read associated hotfix build information for the following file: E:MSSQLMSSQLSS2K5DTSPipelineComponentsTxTermExtraction.dll
01/07/2007 19:28:50.220 Failed to read associated hotfix build information for the following file: E:MSSQLMSSQLSS2K5DTSPipelineComponentsTxTermExtraction.dll
01/07/2007 19:28:50.236 Failed to read associated hotfix build information for the following file: E:MSSQLMSSQLSS2K5DTSPipelineComponentsTxTermLookup.dll
01/07/2007 19:28:50.252 Failed to read associated hotfix build information for the following file: E:MSSQLMSSQLSS2K5DTSPipelineComponentsTxTermLookup.dll
01/07/2007 19:28:50.267 Failed to read associated hotfix build information for the following file: E:MSSQLMSSQLSS2K5DTSPipelineComponentsTxTermLookup.dll
01/07/2007 19:28:50.283 Failed to read version information for the following file: E:MSSQLMSSQLSS2K5DTSBinnResources.90.2047.0
E:MSSQLMSSQLSS2K5DTSBinnResourcesdts.rll
01/07/2007 19:28:50.283 Failed to read associated hotfix build information for the following file: E:MSSQLMSSQLSS2K5DTSBinnResourcesdtsconn.rll
01/07/2007 19:28:50.299 Failed to read associated hotfix build information for the following file: E:MSSQLMSSQLSS2K5DTSBinnResourcesdtsconn.rll
01/07/2007 19:28:50.314 Failed to read associated hotfix build information for the following file: E:MSSQLMSSQLSS2K5DTSBinnResourcesdtsconn.rll
01/07/2007 19:28:50.330 Failed to read version information for the following file: E:MSSQLMSSQLSS2K5DTSForEachEnumeratorsenMicrosoft.SqlServer.ForEachAdoEnumerator.xml
01/07/2007 19:28:50.345 Failed to read version information for the following file: E:MSSQLMSSQLSS2K5DTSForEachEnumeratorsenMicrosoft.SqlServer.ForEachSMOEnumerator.xml
01/07/2007 19:28:50.377 Failed to read version information for the following file: E:MSSQLMSSQLSS2K5DTSConnectionsenMicrosoft.SqlServer.ManagedConnections.xml
01/07/2007 19:28:50.392 Failed to read version information for the following file: E:MSSQLMSSQLSS2K5DTSBinnDTSPipelinePerf.dll
01/07/2007 19:28:50.408 Failed to read associated hotfix build information for the following file: E:MSSQLMSSQLSS2K5DTSBinnResourcesdtspipeline.rll
01/07/2007 19:28:50.408 Failed to read associated hotfix build information for the following file: E:MSSQLMSSQLSS2K5DTSBinnResourcesdtspipeline.rll
01/07/2007 19:28:50.424 Failed to read associated hotfix build information for the following file: E:MSSQLMSSQLSS2K5DTSBinnResourcesdtspipeline.rll
01/07/2007 19:28:50.439 Failed to read version information for the following file: E:MSSQLMSSQLSS2K5DTSTasksenMicrosoft.SqlServer.FtpTask.xml
01/07/2007 19:28:50.455 Failed to read associated hotfix build information for the following file: C:WINDOWSassemblyGAC_MSILMicrosoft.SqlServer.FtpTask9.0.242.0__89845dcd8080cc91Microsoft.SqlServer.FtpTask.dll
01/07/2007 19:28:50.470 Failed to read associated hotfix build information for the following file: E:MSSQLMSSQLSS2K5DTSTasksMicrosoft.SqlServer.FtpTask.dll
01/07/2007 19:28:50.486 Failed to read version information for the following file: E:MSSQLMSSQLSS2K5DTSTasksenMicrosoft.SqlServer.ExecProcTask.xml
01/07/2007 19:28:50.517 Failed to read version information for the following file: E:MSSQLMSSQLSS2K5DTSTasksenMicrosoft.SqlServer.SendMailTask.xml
01/07/2007 19:28:50.549 Failed to read version information for the following file: E:MSSQLMSSQLSS2K5DTSTasksenMicrosoft.SqlServer.MSMQTask.xml
01/07/2007 19:28:50.580 Failed to read associated hotfix build information for the following file: C:WINDOWSassemblyGAC_32Microsoft.SqlServer.MSMQUtil9.0.242.0__89845dcd8080cc91Microsoft.SqlServer.MSMQUtil.dll
01/07/2007 19:28:50.595 Failed to read associated hotfix build information for the following file: C:WINDOWSassemblyGAC_32Microsoft.SqlServer.MSMQUtil9.0.242.0__89845dcd8080cc91Microsoft.SqlServer.MSMQUtil.dll
01/07/2007 19:28:50.595 Failed to read associated hotfix build information for the following file: C:WINDOWSassemblyGAC_32Microsoft.SqlServer.MSMQUtil9.0.242.0__89845dcd8080cc91Microsoft.SqlServer.MSMQUtil.dll
01/07/2007 19:28:50.611 Failed to read associated hotfix build information for the following file: C:WINDOWSassemblyGAC_MSILMicrosoft.SqlServer.MSMQTask9.0.242.0__89845dcd8080cc91Microsoft.SqlServer.MSMQTask.dll
01/07/2007 19:28:50.627 Failed to read associated hotfix build information for the following file: E:MSSQLMSSQLSS2K5DTSBinnMicrosoft.SqlServer.MSMQUtil.dll
01/07/2007 19:28:50.642 Failed to read associated hotfix build information for the following file: E:MSSQLMSSQLSS2K5DTSBinnMicrosoft.SqlServer.MSMQUtil.dll
01/07/2007 19:28:50.658 Failed to read associated hotfix build information for the following file: E:MSSQLMSSQLSS2K5DTSBinnMicrosoft.SqlServer.MSMQUtil.dll
01/07/2007 19:28:50.674 Failed to read associated hotfix build information for the following file: E:MSSQLMSSQLSS2K5DTSTasksMicrosoft.SqlServer.MSMQTask.dll
01/07/2007 19:28:50.689 Failed to read associated hotfix build information for the following file: E:MSSQLMSSQLSS2K5DTSPipelineComponentsTxMulticast.dll
01/07/2007 19:28:50.705 Failed to read associated hotfix build information for the following file: E:MSSQLMSSQLSS2K5DTSPipelineComponentsTxMulticast.dll
01/07/2007 19:28:50.705 Failed to read associated hotfix build information for the following file: E:MSSQLMSSQLSS2K5DTSPipelineComponentsTxMulticast.dll
01/07/2007 19:28:50.720 Failed to read associated hotfix build information for the following file: E:MSSQLMSSQLSS2K5DTSPipelineComponentsCommandDest.dll
01/07/2007 19:28:50.736 Failed to read associated hotfix build information for the following file: E:MSSQLMSSQLSS2K5DTSPipelineComponentsCommandDest.dll
01/07/2007 19:28:50.752 Failed to read associated hotfix build information for the following file: E:MSSQLMSSQLSS2K5DTSPipelineComponentsCommandDest.dll
01/07/2007 19:28:50.767 Failed to read associated hotfix build information for the following file: E:MSSQLMSSQLSS2K5DTSPipelineComponentsTxFileInserter.dll
01/07/2007 19:28:50.767 Failed to read associated hotfix build information for the following file: E:MSSQLMSSQLSS2K5DTSPipelineComponentsTxFileInserter.dll
01/07/2007 19:28:50.799 Failed to read associated hotfix build information for the following file: E:MSSQLMSSQLSS2K5DTSPipelineComponentsTxFileInserter.dll
01/07/2007 19:28:50.845 Failed to read associated hotfix build information for the following file: E:MSSQLMSSQLSS2K5DTSPipelineComponentsTxFileExtractor.dll
01/07/2007 19:28:50.845 Failed to read associated hotfix build information for the following file: E:MSSQLMSSQLSS2K5DTSPipelineComponentsTxFileExtractor.dll
01/07/2007 19:28:50.861 Failed to read associated hotfix build information for the following file: E:MSSQLMSSQLSS2K5DTSPipelineComponentsTxFileExtractor.dll
01/07/2007 19:28:50.877 Failed to read associated hotfix build information for the following file: E:MSSQLMSSQLSS2K5DTSPipelineComponentsTxLineage.dll
01/07/2007 19:28:50.892 Failed to read associated hotfix build information for the following file: E:MSSQLMSSQLSS2K5DTSPipelineComponentsTxLineage.dll
01/07/2007 19:28:50.908 Failed to read associated hotfix build information for the following file: E:MSSQLMSSQLSS2K5DTSPipelineComponentsTxLineage.dll
01/07/2007 19:28:50.924 Failed to read associated hotfix build information for the following file: E:MSSQLMSSQLSS2K5DTSPipelineComponentsTxUnPivot.dll
01/07/2007 19:28:50.924 Failed to read associated hotfix build information for the following file: E:MSSQLMSSQLSS2K5DTSPipelineComponentsTxUnPivot.dll
01/07/2007 19:28:50.955 Failed to read associated hotfix build information for the following file: E:MSSQLMSSQLSS2K5DTSPipelineComponentsTxUnPivot.dll
01/07/2007 19:28:50.955 Failed to read version information for the following file: E:MSSQLMSSQLSS2K5DTSPipelineComponents.90.2047.0
E:MSSQLMSSQLSS2K5DTSPipelineComponentsTxPivot.dll
01/07/2007 19:28:50.970 Failed to read associated hotfix build information for the following file: E:MSSQLMSSQLSS2K5DTSPipelineComponentsTxMergeJoin.dll
01/07/2007 19:28:50.986 Failed to read associated hotfix build information for the following file: E:MSSQLMSSQLSS2K5DTSPipelineComponentsTxMergeJoin.dll
01/07/2007 19:28:51.002 Failed to read associated hotfix build information for the following file: E:MSSQLMSSQLSS2K5DTSPipelineComponentsTxMergeJoin.dll
01/07/2007 19:28:51.017 Failed to read version information for the following file: E:MSSQLMSSQLSS2K5DTSPipelineComponents.90.2047.0
E:MSSQLMSSQLSS2K5DTSPipelineComponentsTxUnAll.dll
01/07/2007 19:28:51.033 Failed to read associated hotfix build information for the following file: E:MSSQLMSSQLSS2K5DTSPipelineComponentsTxSort.dll
01/07/2007 19:28:51.033 Failed to read associated hotfix build information for the following file: E:MSSQLMSSQLSS2K5DTSPipelineComponentsTxSort.dll
01/07/2007 19:28:51.049 Failed to read associated hotfix build information for the following file: E:MSSQLMSSQLSS2K5DTSPipelineComponentsTxSort.dll
01/07/2007 19:28:51.064 Failed to read associated hotfix build information for the following file: E:MSSQLMSSQLSS2K5DTSPipelineComponentsTxSplit.dll
01/07/2007 19:28:51.080 Failed to read associated hotfix build information for the following file: E:MSSQLMSSQLSS2K5DTSPipelineComponentsTxSplit.dll
01/07/2007 19:28:51.080 Failed to read associated hotfix build information for the following file: E:MSSQLMSSQLSS2K5DTSPipelineComponentsTxSplit.dll
01/07/2007 19:28:51.095 Failed to read associated hotfix build information for the following file: E:MSSQLMSSQLSS2K5DTSPipelineComponentsTxLookup.dll
01/07/2007 19:28:51.111 Failed to read associated hotfix build information for the following file: E:MSSQLMSSQLSS2K5DTSPipelineComponentsTxLookup.dll
01/07/2007 19:28:51.127 Failed to read associated hotfix build information for the following file: E:MSSQLMSSQLSS2K5DTSPipelineComponentsTxLookup.dll
01/07/2007 19:28:51.142 Failed to read associated hotfix build information for the following file: E:MSSQLMSSQLSS2K5DTSPipelineComponentsTxGroupDups.dll
01/07/2007 19:28:51.158 Failed to read associated hotfix build information for the following file: E:MSSQLMSSQLSS2K5DTSPipelineComponentsTxGroupDups.dll
01/07/2007 19:28:51.158 Failed to read associated hotfix build information for the following file: E:MSSQLMSSQLSS2K5DTSPipelineComponentsTxGroupDups.dll
01/07/2007 19:28:51.174 Failed to read associated hotfix build information for the following file: E:MSSQLMSSQLSS2K5DTSPipelineComponentsTxDerived.dll
01/07/2007 19:28:51.189 Failed to read associated hotfix build information for the following file: E:MSSQLMSSQLSS2K5DTSPipelineComponentsTxDerived.dll
01/07/2007 19:28:51.205 Failed to read associated hotfix build information for the following file: E:MSSQLMSSQLSS2K5DTSPipelineComponentsTxDerived.dll
01/07/2007 19:28:51.220 Failed to read associated hotfix build information for the following file: E:MSSQLMSSQLSS2K5DTSPipelineComponentsTxDataConvert.dll
01/07/2007 19:28:51.236 Failed to read associated hotfix build information for the following file: E:MSSQLMSSQLSS2K5DTSPipelineComponentsTxDataConvert.dll
01/07/2007 19:28:51.252 Failed to read associated hotfix build information for the following file: E:MSSQLMSSQLSS2K5DTSPipelineComponentsTxDataConvert.dll
01/07/2007 19:28:51.267 Failed to read associated hotfix build information for the following file: E:MSSQLMSSQLSS2K5DTSPipelineComponentsTxCopyMap.dll
01/07/2007 19:28:51.267 Failed to read associated hotfix build information for the following file: E:MSSQLMSSQLSS2K5DTSPipelineComponentsTxCopyMap.dll
01/07/2007 19:28:51.283 Failed to read associated hotfix build information for the following file: E:MSSQLMSSQLSS2K5DTSPipelineComponentsTxCopyMap.dll
01/07/2007 19:28:51.299 Failed to read associated hotfix build information for the following file: E:MSSQLMSSQLSS2K5DTSPipelineComponentsTxCharMap.dll
01/07/2007 19:28:51.314 Failed to read associated hotfix build information for the following file: E:MSSQLMSSQLSS2K5DTSPipelineComponentsTxCharMap.dll
01/07/2007 19:28:51.330 Failed to read associated hotfix build information for the following file: E:MSSQLMSSQLSS2K5DTSPipelineComponentsTxCharMap.dll
01/07/2007 19:28:51.345 Failed to read associated hotfix build information for the following file: E:MSSQLMSSQLSS2K5DTSPipelineComponentsTxBestMatch.dll
01/07/2007 19:28:51.345 Failed to read associated hotfix build information for the following file: E:MSSQLMSSQLSS2K5DTSPipelineComponentsTxBestMatch.dll
01/07/2007 19:28:51.361 Failed to read associated hotfix build information for the following file: E:MSSQLMSSQLSS2K5DTSPipelineComponentsTxBestMatch.dll
01/07/2007 19:28:51.377 Failed to read associated hotfix build information for the following file: E:MSSQLMSSQLSS2K5DTSPipelineComponentsTxAgg.dll
01/07/2007 19:28:51.392 Failed to read associated hotfix build information for the following file: E:MSSQLMSSQLSS2K5DTSPipelineComponentsTxAgg.dll
01/07/2007 19:28:51.408 Failed to read associated hotfix build information for the following file: E:MSSQLMSSQLSS2K5DTSPipelineComponentsTxAgg.dll
01/07/2007 19:28:51.424 Failed to read version information for the following file: E:MSSQLMSSQLSS2K5DTSTasksenMicrosoft.SqlServer.XmlTask.xml
01/07/2007 19:28:51.439 Failed to read version information for the following file: E:MSSQLMSSQLSS2K5dtsBinnatchparser90.dll
01/07/2007 19:28:51.455 Failed to read associated hotfix build information for the following file: C:WINDOWSassemblyGAC_32Microsoft.SqlServer.SQLTask9.0.242.0__89845dcd8080cc91Microsoft.SqlServer.SQLTask.dll
01/07/2007 19:28:51.470 Failed to read associated hotfix build information for the following file: E:MSSQLMSSQLSS2K5DTSBinnSQLTaskConnections.dll
01/07/2007 19:28:51.470 Failed to read associated hotfix build information for the following file: E:MSSQLMSSQLSS2K5DTSBinnSQLTaskConnections.dll
01/07/2007 19:28:51.486 Failed to read associated hotfix build information for the following file: E:MSSQLMSSQLSS2K5DTSBinnSQLTaskConnections.dll
01/07/2007 19:28:51.502 Failed to read associated hotfix build information for the following file: E:MSSQLMSSQLSS2K5DTSTasksMicrosoft.SqlServer.SQLTask.dll
01/07/2007 19:28:51.533 Failed to read associated hotfix build information for the following file: E:MSSQLMSSQLSS2K5DTSPipelineComponentsSqlDest.dll
01/07/2007 19:28:51.549 Failed to read associated hotfix build information for the following file: E:MSSQLMSSQLSS2K5DTSPipelineComponentsSqlDest.dll
01/07/2007 19:28:51.580 Failed to read associated hotfix build information for the following file: E:MSSQLMSSQLSS2K5DTSPipelineComponentsSqlDest.dll
01/07/2007 19:28:51.595 Failed to read associated hotfix build information for the following file: E:MSSQLMSSQLSS2K5SDKAssembliesMicrosoft.SqlServer.ScriptTask.dll
01/07/2007 19:28:51.595 Failed to read associated hotfix build information for the following file: C:WINDOWSassemblyGAC_MSILMicrosoft.SqlServer.ScriptTask9.0.242.0__89845dcd8080cc91Microsoft.SqlServer.ScriptTask.dll
01/07/2007 19:28:51.611 Failed to read associated hotfix build information for the following file: E:MSSQLMSSQLSS2K5DTSTasksMicrosoft.SqlServer.ScriptTask.dll
01/07/2007 19:28:51.627 Failed to read associated hotfix build information for the following file: E:MSSQLMSSQLSS2K5DTSPipelineComponentsRecordSetDest.dll
01/07/2007 19:28:51.642 Failed to read associated hotfix build information for the following file: E:MSSQLMSSQLSS2K5DTSPipelineComponentsRecordSetDest.dll
01/07/2007 19:28:51.658 Failed to read associated hotfix build information for the following file: E:MSSQLMSSQLSS2K5DTSPipelineComponentsRecordSetDest.dll
01/07/2007 19:28:51.674 Failed to read associated hotfix build information for the following file: E:MSSQLMSSQLSS2K5DTSPipelineComponentsRawSource.dll
01/07/2007 19:28:51.674 Failed to read associated hotfix build information for the following file: E:MSSQLMSSQLSS2K5DTSPipelineComponentsRawSource.dll
01/07/2007 19:28:51.705 Failed to read associated hotfix build information for the following file: E:MSSQLMSSQLSS2K5DTSPipelineComponentsRawSource.dll
01/07/2007 19:28:51.705 Failed to read associated hotfix build information for the following file: E:MSSQLMSSQLSS2K5DTSPipelineComponentsRawDest.dll
01/07/2007 19:28:51.720 Failed to read associated hotfix build information for the following file: E:MSSQLMSSQLSS2K5DTSPipelineComponentsRawDest.dll
01/07/2007 19:28:51.736 Failed to read associated hotfix build information for the following file: E:MSSQLMSSQLSS2K5DTSPipelineComponentsRawDest.dll
01/07/2007 19:28:51.752 Failed to read version information for the following file: E:MSSQLMSSQLSS2K5DTSTasksenMicrosoft.SqlServer.ASTasks.xml
01/07/2007 19:28:51.767 Failed to read associated hotfix build information for the following file: C:WINDOWSassemblyGAC_MSILMicrosoft.SqlServer.ASTasks9.0.242.0__89845dcd8080cc91Microsoft.SqlServer.ASTasks.dll
01/07/2007 19:28:51.783 Failed to read associated hotfix build information for the following file: E:MSSQLMSSQLSS2K5DTSTasksMicrosoft.SqlServer.ASTasks.dll
01/07/2007 19:28:51.799 Failed to read associated hotfix build information for the following file: E:MSSQLMSSQLSS2K5DTSPipelineComponentsOleDbSrc.dll
01/07/2007 19:28:51.799 Failed to read associated hotfix build information for the following file: E:MSSQLMSSQLSS2K5DTSPipelineComponentsOleDbSrc.dll
01/07/2007 19:28:51.830 Failed to read associated hotfix build information for the following file: E:MSSQLMSSQLSS2K5DTSPipelineComponentsOleDbSrc.dll
01/07/2007 19:28:51.845 Failed to read associated hotfix build information for the following file: E:MSSQLMSSQLSS2K5DTSPipelineComponentsOleDbDest.dll
01/07/2007 19:28:51.845 Failed to read associated hotfix build information for the following file: E:MSSQLMSSQLSS2K5DTSPipelineComponentsOleDbDest.dll
01/07/2007 19:28:51.861 Failed to read associated hotfix build information for the following file: E:MSSQLMSSQLSS2K5DTSPipelineComponentsOleDbDest.dll
01/07/2007 19:28:51.892 Failed to read associated hotfix build information for the following file: E:MSSQLMSSQLSS2K5DTSPipelineComponentsFlatFileDest.dll
01/07/2007 19:28:51.908 Failed to read associated hotfix build information for the following file: E:MSSQLMSSQLSS2K5DTSPipelineComponentsFlatFileDest.dll
01/07/2007 19:28:51.908 Failed to read associated hotfix build information for the following file: E:MSSQLMSSQLSS2K5DTSPipelineComponentsFlatFileDest.dll
01/07/2007 19:28:51.924 Failed to read associated hotfix build information for the following file: E:MSSQLMSSQLSS2K5DTSPipelineComponentsFlatFileSrc.dll
01/07/2007 19:28:51.955 Failed to read associated hotfix build information for the following file: E:MSSQLMSSQLSS2K5DTSPipelineComponentsFlatFileSrc.dll
01/07/2007 19:28:51.955 Failed to read associated hotfix build information for the following file: E:MSSQLMSSQLSS2K5DTSPipelineComponentsFlatFileSrc.dll
01/07/2007 19:28:51.970 Failed to read version information for the following file: E:MSSQLMSSQLSS2K5DTSTasksenMicrosoft.SqlServer.FileSystemTask.xml
01/07/2007 19:28:51.986 Failed to read associated hotfix build information for the following file: C:WINDOWSassemblyGAC_MSILMicrosoft.SqlServer.FileSystemTask9.0.242.0__89845dcd8080cc91Microsoft.SqlServer.FileSystemTask.dll
01/07/2007 19:28:52.017 Failed to read associated hotfix build information for the following file: E:MSSQLMSSQLSS2K5DTSTasksMicrosoft.SqlServer.FileSystemTask.dll
01/07/2007 19:28:52.033 Failed to read version information for the following file: E:MSSQLMSSQLSS2K5DTSBinnExecPackageTask.dll
01/07/2007 19:28:52.049 Failed to read version information for the following file: E:MSSQLMSSQLSS2K5DTSTasksenMicrosoft.SqlServer.DmQueryTask.xml
01/07/2007 19:28:52.064 Failed to read associated hotfix build information for the following file: C:WINDOWSassemblyGAC_MSILMicrosoft.SqlServer.DMQueryTask9.0.242.0__89845dcd8080cc91Microsoft.SqlServer.DmQueryTask.dll
01/07/2007 19:28:52.064 Failed to read associated hotfix build information for the following file: E:MSSQLMSSQLSS2K5DTSTasksMicrosoft.SqlServer.DmQueryTask.dll
01/07/2007 19:28:52.095 Failed to read version information for the following file: E:MSSQLMSSQLSS2K5DTSTasksenMicrosoft.SqlServer.BulkInsertTask.xml
01/07/2007 19:28:52.111 Failed to read associated hotfix build information for the following file: C:WINDOWSassemblyGAC_32Microsoft.SqlServer.BulkInsertTaskConnections9.0.242.0__89845dcd8080cc91Microsoft.SqlServer.BulkInsertTaskConnections.dll
01/07/2007 19:28:52.127 Failed to read associated hotfix build information for the following file: C:WINDOWSassemblyGAC_32Microsoft.SqlServer.BulkInsertTaskConnections9.0.242.0__89845dcd8080cc91Microsoft.SqlServer.BulkInsertTaskConnections.dll
01/07/2007 19:28:52.142 Failed to read associated hotfix build information for the following file: C:WINDOWSassemblyGAC_32Microsoft.SqlServer.BulkInsertTaskConnections9.0.242.0__89845dcd8080cc91Microsoft.SqlServer.BulkInsertTaskConnections.dll
01/07/2007 19:28:52.158 Failed to read associated hotfix build information for the following file: C:WINDOWSassemblyGAC_MSILMicrosoft.SqlServer.BulkInsertTask9.0.242.0__89845dcd8080cc91Microsoft.SqlServer.BulkInsertTask.dll
01/07/2007 19:28:52.174 Failed to read version information for the following file: E:MSSQLMSSQLSS2K5DTSBinnMicrosoft.SqlServer.BulkInsertTaskConnections.dll
01/07/2007 19:28:52.189 Failed to read associated hotfix build information for the following file: E:MSSQLMSSQLSS2K5DTSTasksMicrosoft.SqlServer.BulkInsertTask.dll
01/07/2007 19:28:52.205 Failed to read version information for the following file: E:MSSQLMSSQLSS2K5DTSTasksenMicrosoft.SqlServer.WMIEWTask.xml
01/07/2007 19:28:52.220 Failed to read version information for the following file: E:MSSQLMSSQLSS2K5DTSTasksenMicrosoft.SqlServer.WMIDRTask.xml
01/07/2007 19:28:52.236 Failed to read version information for the following file: E:MSSQLMSSQLSS2K5DTSTasksenMicrosoft.SqlServer.WebServiceTask.xml
01/07/2007 19:28:52.252 Failed to read associated hotfix build information for the following file: C:WINDOWSassemblyGAC_MSILMicrosoft.SqlServer.WebServiceTask9.0.242.0__89845dcd8080cc91Microsoft.SqlServer.WebServiceTask.dll
01/07/2007 19:28:52.267 Failed to read associated hotfix build information for the following file: C:WINDOWSassemblyGAC_MSILMicrosoft.SqlServer.MaintenancePlanTasks9.0.242.0__89845dcd8080cc91Microsoft.SqlServer.MaintenancePlanTasks.dll
01/07/2007 19:28:52.283 Failed to read associated hotfix build information for the following file: E:MSSQLMSSQLSS2K5DTSTasksMicrosoft.SqlServer.WebServiceTask.dll
01/07/2007 19:28:52.299 Failed to read associated hotfix build information for the following file: E:MSSQLMSSQLSS2K5DTSTasksMicrosoft.SqlServer.MaintenancePlanTasks.dll
01/07/2007 19:28:52.314 Failed to read associated hotfix build information for the following file: E:MSSQLMSSQLSS2K5DTSPipelineComponentsResourcesdtspipeline.rll
01/07/2007 19:28:52.330 Failed to read associated hotfix build information for the following file: E:MSSQLMSSQLSS2K5DTSPipelineComponentsResourcesdtspipeline.rll
01/07/2007 19:28:52.345 Failed to read associated hotfix build information for the following file: E:MSSQLMSSQLSS2K5DTSPipelineComponentsResourcesdtspipeline.rll
01/07/2007 19:28:52.345 Failed to read associated hotfix build information for the following file: E:MSSQLMSSQLSS2K5DTSPipelineComponentsexceldest.dll
01/07/2007 19:28:52.377 Failed to read associated hotfix build information for the following file: E:MSSQLMSSQLSS2K5DTSPipelineComponentsexceldest.dll
01/07/2007 19:28:52.392 Failed to read associated hotfix build information for the following file: E:MSSQLMSSQLSS2K5DTSPipelineComponentsexceldest.dll
01/07/2007 19:28:52.392 Failed to read associated hotfix build information for the following file: E:MSSQLMSSQLSS2K5DTSPipelineComponentsexcelsrc.dll
01/07/2007 19:28:52.408 Failed to read associated hotfix build information for the following file: E:MSSQLMSSQLSS2K5DTSPipelineComponentsexcelsrc.dll
01/07/2007 19:28:52.439 Failed to read associated hotfix build information for the following file: E:MSSQLMSSQLSS2K5DTSPipelineComponentsexcelsrc.dll
01/07/2007 19:28:52.439 Failed to read associated hotfix build information for the following file: E:MSSQLMSSQLSS2K5DTSPipelineComponentsMicrosoft.SqlServer.XMLSrc.dll
01/07/2007 19:28:52.455 Failed to read associated hotfix build information for the following file: E:MSSQLMSSQLSS2K5DTSPipelineComponentsMicrosoft.SqlServer.ADONETSrc.dll
01/07/2007 19:28:52.470 Failed to read associated hotfix build information for the following file: C:WINDOWSassemblyGAC_MSILMicrosoft.SqlServer.XmlSrc9.0.242.0__89845dcd8080cc91Microsoft.SqlServer.XMLSrc.dll
01/07/2007 19:28:52.486 Failed to read associated hotfix build information for the following file: C:WINDOWSassemblyGAC_MSILMicrosoft.SqlServer.ADONETSrc9.0.242.0__89845dcd8080cc91Microsoft.SqlServer.ADONETSrc.dll
01/07/2007 19:28:52.502 Failed to read associated hotfix build information for the following file: C:WINDOWSassemblyGAC_MSILMicrosoft.SqlServer.PipelineHost9.0.242.0__89845dcd8080cc91Microsoft.SQLServer.PipelineHost.dll
01/07/2007 19:28:52.517 Failed to read version information for the following file: E:MSSQLMSSQLSS2K5DTSBinnDTSPipeline.dll
01/07/2007 19:28:52.533 Failed to read associated hotfix build information for the following file: C:WINDOWSassemblyGAC_MSILMicrosoft.SqlServer.ForEachNodeListEnumerator9.0.242.0__89845dcd8080cc91Microsoft.SqlServer.ForEachNodeListEnumerator.dll
01/07/2007 19:28:52.549 Failed to read associated hotfix build information for the following file: C:WINDOWSassemblyGAC_MSILMicrosoft.SqlServer.ForEachSMOEnumerator9.0.242.0__89845dcd8080cc91Microsoft.SqlServer.ForEachSMOEnumerator.dll
01/07/2007 19:28:52.564 Failed to read associated hotfix build information for the following file: C:WINDOWSassemblyGAC_32DTEParseMgd9.0.242.0__89845dcd8080cc91DTEParseMgd.dll
01/07/2007 19:28:52.580 Failed to read associated hotfix build information for the following file: C:WINDOWSassemblyGAC_32DTEParseMgd9.0.242.0__89845dcd8080cc91DTEParseMgd.dll
01/07/2007 19:28:52.595 Failed to read associated hotfix build information for the following file: C:WINDOWSassemblyGAC_32DTEParseMgd9.0.242.0__89845dcd8080cc91DTEParseMgd.dll
01/07/2007 19:28:52.595 Failed to read version information for the following file: E:MSSQLMSSQLSS2K5DTSBinn.90.2047.0
E:MSSQLMSSQLSS2K5DTSBinnDTSComEx.dll
01/07/2007 19:28:52.611 Failed to read version information for the following file: E:MSSQLMSSQLSS2K5DTSBinndtsmsg.dll
01/07/2007 19:28:52.642 Failed to read version information for the following file: E:MSSQLMSSQLSS2K5DTSBinnDTSLog.dll
01/07/2007 19:28:52.642 Failed to read version information for the following file: E:MSSQLMSSQLSS2K5DTSBinn.90.2047.0
E:MSSQLMSSQLSS2K5DTSBinnDtsUt.dll
01/07/2007 19:28:52.658 Failed to read version information for the following file: E:MSSQLMSSQLSS2K5DTSBinnDTS.dll
01/07/2007 19:28:52.674 Failed to read version information for the following file: E:MSSQLMSSQLSS2K5DTSBinn.90.2047.0
E:MSSQLMSSQLSS2K5DTSBinnDTEParsM.dll
01/07/2007 19:28:52.705 Failed to read version information for the following file: E:MSSQLMSSQLSS2K5DTSBinn.90.2047.0
E:MSSQLMSSQLSS2K5DTSForEachEnumeratorsNodeList.dll
01/07/2007 19:28:52.705 Failed to read associated hotfix build information for the following file: E:MSSQLMSSQLSS2K5DTSForEachEnumeratorsForEachFileEnumerator.dll
01/07/2007 19:28:52.720 Failed to read associated hotfix build information for the following file: E:MSSQLMSSQLSS2K5DTSForEachEnumeratorsForEachFileEnumerator.dll
01/07/2007 19:28:52.736 Failed to read associated hotfix build information for the following file: E:MSSQLMSSQLSS2K5DTSForEachEnumeratorsForEachFileEnumerator.dll
01/07/2007 19:28:52.752 Failed to read associated hotfix build information for the following file: E:MSSQLMSSQLSS2K5DTSForEachEnumeratorsMicrosoft.SqlServer.ForEachSMOEnumerator.dll
01/07/2007 19:28:52.767 Failed to read associated hotfix build information for the following file: E:MSSQLMSSQLSS2K5DTSBinnMsDtsSrvr.exe
01/07/2007 19:28:52.783 Failed to read version information for the following file: C:Program FilesMicrosoft.NETADOMD.NETenMicrosoft.AnalysisServices.AdomdClient.xml
01/07/2007 19:28:52.799 Failed to read associated hotfix build information for the following file: C:Program FilesMicrosoft.NETADOMD.NETMicrosoft.AnalysisServices.AdomdClient.dll
01/07/2007 19:28:52.814 Failed to read associated hotfix build information for the following file: C:WINDOWSassemblyGAC_MSILMicrosoft.AnalysisServices.AdomdClient9.0.242.0__89845dcd8080cc91Microsoft.AnalysisServices.AdomdClient.dll
01/07/2007 19:28:52.830 Failed to read associated hotfix build information for the following file: C:Program FilesMicrosoft SQL ServerSharedmsasxpress.dll
01/07/2007 19:28:52.845 Failed to read associated hotfix build information for the following file: C:Program FilesMicrosoft SQL ServerSharedmsasxpress.dll
01/07/2007 19:28:52.861 Failed to read associated hotfix build information for the following file: C:Program FilesMicrosoft SQL ServerSharedmsasxpress.dll
01/07/2007 19:28:52.877 Failed to read version information for the following file: E:MSSQLMSSQLSS2K5ToolsBinnResources
E:MSSQLMSSQLSS2K5ToolsBinnResourcessqlcm.xml
01/07/2007 19:28:52.877 Failed to read associated hotfix build information for the following file: E:MSSQLMSSQLSS2K5ToolsBinnResourcesSqlManager.rll
01/07/2007 19:28:52.908 Failed to read associated hotfix build information for the following file: E:MSSQLMSSQLSS2K5ToolsBinnResourcesSqlManager.rll
01/07/2007 19:28:52.924 Failed to read associated hotfix build information for the following file: E:MSSQLMSSQLSS2K5ToolsBinnResourcesSqlManager.rll
01/07/2007 19:28:52.939 Failed to read associated hotfix build information for the following file: E:MSSQLMSSQLSS2K5ToolsinnSqlManager.dll
01/07/2007 19:28:52.939 Failed to read associated hotfix build information for the following file: E:MSSQLMSSQLSS2K5ToolsinnSqlManager.dll
01/07/2007 19:28:52.970 Failed to read associated hotfix build information for the following file: E:MSSQLMSSQLSS2K5ToolsinnSqlManager.dll
01/07/2007 19:28:52.986 Failed to read associated hotfix build information for the following file: C:Program FilesMicrosoft SQL ServerSharedsqlsvcsync.dll
01/07/2007 19:28:52.986 Failed to read associated hotfix build information for the following file: C:Program FilesMicrosoft SQL ServerSharedsqlsvcsync.dll
01/07/2007 19:28:53.002 Failed to read associated hotfix build information for the following file: C:Program FilesMicrosoft SQL ServerSharedsqlsvcsync.dll
01/07/2007 19:28:53.017 Failed to read associated hotfix build information for the following file: C:Program FilesMicrosoft SQL ServerSharedsqlsecacctchg.dll
01/07/2007 19:28:53.033 Failed to read associated hotfix build information for the following file: C:Program FilesMicrosoft SQL ServerSharedsqlsecacctchg.dll
01/07/2007 19:28:53.049 Failed to read associated hotfix build information for the following file: C:Program FilesMicrosoft SQL ServerSharedsqlsecacctchg.dll
01/07/2007 19:28:53.064 Failed to read associated hotfix build information for the following file: C:Program FilesMicrosoft SQL ServerSharedsqlftacct.dll
01/07/2007 19:28:53.064 Failed to read associated hotfix build information for the following file: C:Program FilesMicrosoft SQL ServerSharedsqlftacct.dll
01/07/2007 19:28:53.095 Failed to read associated hotfix build information for the following file: C:Program FilesMicrosoft SQL ServerSharedsqlftacct.dll
01/07/2007 19:28:53.111 Failed to read associated hotfix build information for the following file: C:Program FilesMicrosoft SQL ServerSharedisacctchange.dll
01/07/2007 19:28:53.111 Failed to read associated hotfix build information for the following file: C:Program FilesMicrosoft SQL ServerSharedisacctchange.dll
01/07/2007 19:28:53.127 Failed to read associated hotfix build information for the following file: C:Program FilesMicrosoft SQL ServerSharedisacctchange.dll
01/07/2007 19:28:53.158 Failed to read associated hotfix build information for the following file: C:Program FilesMicrosoft SQL ServerSharedsvrenumapi.dll
01/07/2007 19:28:53.174 Failed to read associated hotfix build information for the following file: C:Program FilesMicrosoft SQL ServerSharedsvrenumapi.dll
01/07/2007 19:28:53.189 Failed to read associated hotfix build information for the following file: C:Program FilesMicrosoft SQL ServerSharedsvrenumapi.dll
01/07/2007 19:28:53.189 Failed to read version information for the following file: C:Program FilesMicrosoft SQL ServerShared.90.2047.0
C:WINDOWSassemblyGAC_MSILMicrosoft.SqlServer.Rmo9.0.242.0__89845dcd8080cc91Rmo.dll
01/07/2007 19:28:53.205 Failed to read associated hotfix build information for the following file: C:WINDOWSassemblyGAC_MSILMicrosoft.AnalysisServices9.0.242.0__89845dcd8080cc91Microsoft.AnalysisServices.DLL
01/07/2007 19:28:53.236 Failed to read associated hotfix build information for the following file: C:WINDOWSassemblyGAC_MSILMicrosoft.DataWarehouse.Interfaces9.0.242.0__89845dcd8080cc91Microsoft.DataWarehouse.Interfaces.DLL
01/07/2007 19:28:53.252 Failed to read associated hotfix build information for the following file: C:WINDOWSassemblyGAC_MSILMicrosoft.SqlServer.RegSvrEnum9.0.242.0__89845dcd8080cc91Microsoft.SqlServer.RegSvrEnum.dll
01/07/2007 19:28:53.252 Failed to read associated hotfix build information for the following file: C:WINDOWSassemblyGAC_32Microsoft.SqlServer.BatchParser9.0.242.0__89845dcd8080cc91microsoft.sqlserver.batchparser.dll
01/07/2007 19:28:53.267 Failed to read associated hotfix build information for the following file: C:WINDOWSassemblyGAC_32Microsoft.SqlServer.BatchParser9.0.242.0__89845dcd8080cc91microsoft.sqlserver.batchparser.dll
01/07/2007 19:28:53.299 Failed to read associated hotfix build information for the following file: C:WINDOWSassemblyGAC_32Microsoft.SqlServer.BatchParser9.0.242.0__89845dcd8080cc91microsoft.sqlserver.batchparser.dll
01/07/2007 19:28:53.299 Failed to read associated hotfix build information for the following file: C:WINDOWSassemblyGAC_MSILMicrosoft.SqlServer.ServiceBrokerEnum9.0.242.0__89845dcd8080cc91Microsoft.SqlServer.ServiceBrokerEnum.dll
01/07/2007 19:28:53.314 Failed to read associated hotfix build information for the following file: C:WINDOWSassemblyGAC_MSILMicrosoft.SqlServer.WmiEnum9.0.242.0__89845dcd8080cc91Microsoft.SqlServer.WmiEnum.dll
01/07/2007 19:28:53.330 Failed to read associated hotfix build information for the following file: C:WINDOWSassemblyGAC_MSILMicrosoft.SqlServer.SqlEnum9.0.242.0__89845dcd8080cc91Microsoft.SqlServer.SqlEnum.dll
01/07/2007 19:28:53.345 Failed to read associated hotfix build information for the following file: C:WINDOWSassemblyGAC_MSILMicrosoft.SqlServer.SmoEnum9.0.242.0__89845dcd8080cc91Microsoft.SqlServer.SmoEnum.dll
01/07/2007 19:28:53.361 Failed to read associated hotfix build information for the following file: C:WINDOWSassemblyGAC_MSILMicrosoft.SqlServer.Smo9.0.242.0__89845dcd8080cc91Microsoft.SqlServer.Smo.dll
01/07/2007 19:28:53.377 Failed to read associated hotfix build information for the following file: C:Program FilesMicrosoft SQL ServerSharedSqlSAC.exe
01/07/2007 19:28:53.392 Failed to read associated hotfix build information for the following file: C:Program FilesMicrosoft SQL ServerSharedMicrosoft.SqlSac.Public.dll
01/07/2007 19:28:53.392 Failed to read associated hotfix build information for the following file: C:WINDOWSassemblyGAC_MSILMicrosoft.SqlServer.msxml6_interop6.0.0.0__89845dcd8080cc91Microsoft.SqlServer.msxml6_interop.dll
01/07/2007 19:28:53.517 Attempting to install file: sqlrun_dts.msp
01/07/2007 19:28:53.548 Attempting to install file: \AUS02DB13g$2fe15a257eaedfc36c121fc912HotFixDTSFilessqlrun_dts.msp
01/07/2007 19:28:53.564 Creating MSP install log file at: C:WINDOWSHotfixDTS9LogsDTS9_Hotfix_KB913090_sqlrun_dts.msp.log
01/07/2007 19:28:53.580 Successfully opened registry key: SoftwarePoliciesMicrosoftWindowsInstaller
01/07/2007 19:28:53.580 Failed to read registry key: Debug
01/07/2007 19:29:48.375 MSP returned 1603: A fatal error occurred during installation.
01/07/2007 19:29:48.672 Successfully opened registry key: SoftwarePoliciesMicrosoftWindowsInstaller
01/07/2007 19:29:48.687 Failed to read registry key: Debug
01/07/2007 19:29:48.687 Unable to install MSP file: \AUS02DB13g$2fe15a257eaedfc36c121fc912HotFixDTSFilessqlrun_dts.msp
01/07/2007 19:29:48.703 The following exception occurred: Unable to install Windows Installer MSP file Date: 01/07/2007 19:29:48.703 File: depotsqlvaultsetupmainsetupsqlsesqlsedllcopyengine.cpp Line: 856
01/07/2007 19:29:48.750
01/07/2007 19:29:48.765 Product Status Summary:
01/07/2007 19:29:48.781 Product: SQL Server Native Client
01/07/2007 19:29:48.797 SQL Server Native Client (RTM ) - Success
01/07/2007 19:29:48.812
01/07/2007 19:29:48.828 Product: Setup Support Files
01/07/2007 19:29:48.844 Setup Support Files (RTM ) - Success
01/07/2007 19:29:48.844
01/07/2007 19:29:48.859 Product: Database Services
01/07/2007 19:29:48.875 Database Services (SP1 2047 ENU) - Success
01/07/2007 19:29:48.890
01/07/2007 19:29:48.906 Product: Integration Services
01/07/2007 19:29:48.922 Integration Services (SP1 ENU) - Failure
01/07/2007 19:29:48.937 Details: Unable to install Windows Installer MSP file
01/07/2007 19:29:48.953
01/07/2007 19:29:48.969 Product: Client Components
01/07/2007 19:29:48.969 Client Components (SP1 2047 ENU) - Not Applied
01/07/2007 19:29:48.984
01/07/2007 19:29:49.015 Product: MSXML 6.0 Parser
01/07/2007 19:29:49.062 MSXML 6.0 Parser (RTM ) - Not Applied
01/07/2007 19:29:49.078
01/07/2007 19:29:49.094 Product: SQLXML4
01/07/2007 19:29:49.109 SQLXML4 (RTM ) - Not Applied
01/07/2007 19:29:49.109
01/07/2007 19:29:49.140 Product: Backward Compatibility
01/07/2007 19:29:49.156 Backward Compatibility (RTM ) - Not Applied
01/07/2007 19:29:49.156
01/07/2007 19:29:49.172 Product: Microsoft SQL Server VSS Writer
01/07/2007 19:29:49.187 Microsoft SQL Server VSS Writer (RTM ) - Not Applied
01/07/2007 19:29:49.203

View 2 Replies View Related

DTS-Package Sends Mail And Files Before The Job Finishes

Jan 11, 2008

I have a package which truncates files, fills them with data andshould send a mail with the files as attachment when it finishesrunning. In between, when the task is still running mail is sent withempty files. When I take a look at the directory (at the end of thetask), where the files are created I find out that the files are notempty.(e.g. in task: doA->doB->doC->SendMail. But instead of waiting tilldoB->doC finishes, it does the following: doA->SendMail ... may bebecause doB takes long.)Can I indicate anywhere that it should delay the mail until at the endof the task?Thanks in advance.Harp

View 1 Replies View Related

Stumped On How To Set-up Priority So Evaluation Correctly Finishes

Feb 2, 2008

Hello everyone

Here is the situation I'm trying to set-up a package to ftp some files down if that part fails email me but if successful rename the 2 files to something else.


so what I set-up was a FTP tasks with the remote path set as a expresion since I needed to Download todays files.
no problem there have that part working.

so then I set a notifaction event with failure constraint to email me. pretty easy so far.

then I set 2 tasks to rename the 2 files downloaded I'm sure I could do this part with a loop but what seperate tasks so I knew if any failed or could set-up notifaction tasks if I wanted. in the 2 rename tasks I set the sourcepath to an expression so it would know to read todays files and they could change from day to day.

then the destination part is hard coded for now to a file name.

now here is were the issue comes in I go to save it and it says the files don't exist from the rename piece. well of course not they haven't been FTPed yet.

so I tried delayevaluation on both the file system tasks but a no go still errors.

What I need it to do is basically say wait till the ftp is run these files won't be there. any help in the right direction would be appreciated.

thank in advance
Troy

View 1 Replies View Related

Lock A Table Until Package Execution Finishes

Feb 23, 2007

Hello,
I need to lock a table in startup of my package so that access calls from other applications are put on "wait" by sql server until I unlock.


Any idea how would I do it ?
Or is it possible or not ?


Thanks,
Fahad

View 3 Replies View Related

Prolonged Execution For Table UPDATE Statement - Not Sure It Finishes

Jul 27, 2006

I am cleaning up a large database table that has Date keys instead of real DateTimes. To do this, I am running the following query...

UPDATE MQIC.DBO.OBSERVATION_F

SET MQIC.DBO.OBSERVATION_F.OBS_DATE = MQIC.DBO.DATE_D.ACTUAL_DATE

FROM MQIC.DBO.OBSERVATION_F INNER JOIN MQIC.DBO.DATE_D

ON MQIC.DBO.OBSERVATION_F.DATE_KEY = MQIC.DBO.DATE_D.DATE_KEY

where Actual_Date is what is being stored, and the Date_Key is to be dropped.



The particulars are this -

Date_D table - 92,000 rows - 40 MB

Observation_F - 2,000,000 rows - 3.2 GB

This is being run on a remotedly hosted rack server with an AMD processor, 1 GB RAM, 60 GB harddisk space, 20 GB used.



SQL-Server 2005 Express - SP1



If I do the same query as a SELECT Statement,



UPDATE MQIC.DBO.OBSERVATION_F

SELECT MQIC.DBO.OBSERVATION_F.DATE_KEY, MQIC.DBO.DATE_D.ACTUAL_DATE

FROM MQIC.DBO.OBSERVATION_F INNER JOIN MQIC.DBO.DATE_D

ON MQIC.DBO.OBSERVATION_F.DATE_KEY = MQIC.DBO.DATE_D.DATE_KEY

it runs to completion in about 15 min - during the entire time there is extensive used of CPU from Task Manager.

If I do the above statement, it seems to use lots of resources (50% +) for about 5 min, then falls to 5%. It just seems to sit there, for an hour + at which time I've killed the query.

This is actually the second time I tried this. The first time was on a different machine, with the P4, 3GB RAM, plenty of disk space, and using SQL-Server 2005 Standard - SP1. Exactly the same decrease in resources happened, and even though it ran several hours, no results.

Any thoughts here - not waiting long enough, memory leaks, etc.?

Thanks!

View 6 Replies View Related

Problem Connecting To SS2K5 Named Instance Using Client Tools

Aug 9, 2007

Hi,

The problem I have is this:


I have installed SQL Server 2005 Enterprise Edition on a W2K3 server that already has a SQL Server 2000 default instance installed. The installation appears to be a success. The problem is that having installed the client tools, and trying to connect, I get the following error message in a dialog:


"Cannot connect server SERVERNAMEINSTANCENAME
An error has occurred while establishing a connection to the server. When connecting to SQL Server 2005, this failure may be caused by the fact that under the default settings SQL Server does not allow remote connections. (provider: SQL Network Interfaces, error: 26 - Error Locating
Server/Instance Specified)(Microsoft SQL Server)"


The funny thing is that I can connect to the SQL Server 2000 default instance that is on that server.
So it's obviously not a connection problem per se at my end i.e. bad dns etc which might stop me resolving the server name.


Googling for this error text gives the following advice on various web sites:


1. Check that the remote server allows connections.


It does, as other colleagues in my team have successfully installed the tools and can connect with no problems.


2. Check that the SQL Browser service is running.


It is, as without this running, my colleagues would not be able to connect either.


3. Open SQL Server Configuration Manager. Select "SQL Server 2005 Network Configuration | Protocols for MSSQLSERVER" then enable the protocols you need.


The required protocol (TCP/IP) is enabled. Named pipes is also enabled, although I don't think that we're using that. And shared memory is also enabled by default.


4. Open the firewall and add exceptions for sqlbrowser.exe or UDP port
1434


There is no firewall running at either end of the connection and as mentioned I can connect to the SS2K default instance.


5. Make sure that the server machine is reachable.



I can connect to the SS2K default instance so it must be reachable. I can't see that I would need to change any configuration settings as my colleagues are using exactly the same default settings for their connections and they work fine.


The only thing that I have done differently is that I originally installed the client tools using someone else's privileged account as I didn't have admin rights on my box. The client tools didn't work, so I got admin rights to my box, uninstalled the client tools and then reinstalled them using my account. Still no luck. Not sure if something is still hanging around after the uninstallation that would cause me a problem.

To help, I've also filled out the following questionnaire:

[1] Client side:
> What is the connection string in you app or DSN?
There isn't one. I'm trying to connect from the SQL Server Management Studio | 'Connect to Server' dialog.
> If client fails to connect, what is the client error messages?
"Cannot connect server Y
An error has occurred while establishing a connection to the server. When connecting to SQL Server
2005, this failure may be caused by the fact that under the default settings SQL Server does not
allow remote connections. (provider: SQL Network Interfaces, error: 26 - Error Locating
Server/Instance Specified)(Microsoft SQL Server)"
Is the client remote or local to the SQL server machine? Remote
Can you ping your server? YES
Can you telnet to your SQL Server? YES
What is your client database provider? [SNAC | MDAC | ADO.NET1.0 | ADO.NET2.0| other (please specify] N/A
What is your client application? SQL Management Studio
Is your client computer in the same domain as the Server computer? Different domains
What protocol the client enabled? [Shared Memory | TCPIP | Named Pipes]. All 3 protocols are enabled
Do you have aliases configured that match the server name portion of your connection string? No
Do you select force encryption on server and/or client? No

[2] Server side:
What is the MS SQL version? SQL Server 2005
What is the SKU of MS SQL? Enterprise
What is the SQL Server Protocol enabled? [Shared Memory | TCPIP | Named Pipes ]. All 3
Does the server start successfully? YES. Other people can connect to the same instance.
If SQL Server is a named instance, is the SQL browser enabled? YES
What is the account that the SQL Server is running under? Domain Account
Do you make firewall exception for your SQL server TCP port if you want connect remotely through TCP provider? N/A. Firewall not running.
Do you make firewall exception for SQL Browser UDP port 1434? N/A. Firewall not running.
What tool or Application are you using to connect to SQL Server SQL Server Management Studio

[3] Platform:
What is the OS version? Windows 2003 (Server side), Windows XP Pro Version 2002 SP 2
Do you have third party antivirus, anti-spareware software installed? Symantec AntiVirus

[4] Misc:
If you have certificate configuration issue: N/A


Has anybody else come across this problem, as I've run out of ideas.


Many thanks,

View 1 Replies View Related

Moving Average Using Select Statement Or Cursor Based?

Jul 30, 2007

ID DATE(dd/mm/yy) TYPE QTYIN COST_IN_AMT COST_OUT_AMT(MOVING AVERAGE)
1 01/01/2007 PURCHASE 10 1000
2 01/01/2007 PURCHAES 5 1100
3 01/01/2007 SALES -5 *TobeCalculated
4 02/01/2007 Purchase 20 9000
5 02/01/2007 SALES -10 *TobeCalculated
5 02/01/2007 purchase 50 8000
6 03/01/2007 Sales -10 *TobeCalculate
7 01/01/2007 Purchase 20 12000

I have a table when user add new sales or puchase will be added to this table ITEM_TXNS. The above date is part of the table for a ProductID . (The field is removed here)
In order to calculate the balance amount using moving average, I must calculated the cost_out_amt first on the fly.
When user add new sales I also need to determine the cost/unit for a product id using moving average. The problem is I can not just use sum, because i need to determine cost_out_amt for each sales first which will be calculated on the fly.
The reason i dont store the cost_out_amt (instead calculate on the fly) because User could Edit the previous sales/purchase txn or Insert new sales for a previous date. Example THe record with ID 9. By Adding this txn with ID 9, would cause all the cost_out_amt will be incorrect (Using moving Average) if i store the cost_amout_out on entrying txn and need to be recalculated.
Instead I just want to calculate on the fly and able to determine the cost avr for a specific point of time.
Should I just use Cursor and loop all the record and calculate the cost or maybe I can just use on Select Statement?

View 20 Replies View Related

SQL 2012 :: Stored Procedure Never Finishes Running From SSRS Report Manager?

Jul 9, 2015

My SSRS report never finishes running for some reason.

If I run the same SP with the same parameters from SSMS it runs in 0.5 sec (returns 8-10 rows).

When running from report manager, I see extremely high CPU Time and Disk IO values, no blocking, no waiting at all.

View 4 Replies View Related

Return The Results Of A Select Query In A Column Of Another Select Query.

Feb 8, 2008

Not sure if this is possible, but maybe. I have a table that contains a bunch of logs.
I'm doing something like SELECT * FROM LOGS. The primary key in this table is LogID.
I have another table that contains error messages. Each LogID could have multiple error messages associated with it. To get the error messages.
When I perform my first select query listed above, I would like one of the columns to be populated with ALL the error messages for that particular LogID (SELECT * FROM ERRORS WHERE LogID = MyLogID).
Any thoughts as to how I could accomplish such a daring feat?

View 9 Replies View Related

Problem With SQL Query Not Moving Through Every Record

Jul 1, 2004

I was wondering if anyone could quickly identify why the query is not parsing through each line in the temp table? I am sure its something stupid and easy, but if anyone has an idea, I would greatly appreciate the help!

My results are the same row repeated exactly the same for the number of rows in the temp table.






Declare @Topic varchar(150)
Declare @CustomTitle varchar(150)
Declare @FullName varchar(100)
Declare @starttime datetime
Declare @endtime datetime




select
TOPIC = t.TopicName,
CustomTitle = e.ssCustomTitle,
StartTime = v.StartDateTime,
eFirstName = FirstName,
eLastName = LastName,
eEndTime = ssEndTime

INTO #tmpwork

FROM
brSession e
INNER JOIN v_SessionStartDateTime v on v.ssSessionId=e.ssSessionId
LEFT OUTER JOIN Topic t on t.TopicId=e.ssTopicId
LEFT JOIN brssPresenter ep ON (e.ssSessionID = ep.prSessionId)
LEFT OUTER JOIN Personnel p on p.PersonnelNbr=ep.prPerNbr
LEFT OUTER JOIN brVirtualRoom vr ON vr.vrBriefingId=e.ssBriefingId AND vr.vrVirtualRoomId=e.ssVirtualRoomId
LEFT OUTER JOIN brLocation bl ON bl.loBriefingId=vr.vrBriefingId AND bl.loVirtualRoomId=vr.vrVirtualRoomId
LEFT OUTER JOIN location BR ON BR.LocationId=bl.loLocationId
LEFT OUTER JOIN brssDetail1 dt on dt.dt1SessionId=e.ssSessionId
LEFT OUTER JOIN Competitor c on CompetitorId=dt.dt1CompetitorId
LEFT OUTER JOIN PresentationStyle ps ON ps.PresentationStyleId=dt.dt1PresentationStyleId
WHERE
e.ssBriefingID = 11749
and((not prConfirmModeId = 0) or (prPerNbr is null))
ORDER BY ssStartTime

SELECT @Topic = Topic,
@CustomTitle = CustomTitle,
@FullName = eFirstname + ' ' + eLastName,
@StartTime = starttime,
@EndTime = eEndTime
From #tmpwork




IF (@CustomTitle is not null)
IF (not @CustomTitle = '') --correct problem of ZLS
Begin
set @Topic = @CustomTitle
End

SELECT
Topic = @Topic,
StartTime = @StartTime,
FullName = @FullName,
EndTime = @endtime

INTO #Final

FROM #tmpwork


select * from #Final


drop table #tmpwork
drop table #Final

View 3 Replies View Related

Query Data Based On Moving Datetime.

Feb 5, 2008

I'm trying to query data from a database for a report that looks for the last 2 weeks starting at 10pm, taking a value once every 24 hours. Using

AND DateTime >= DateAdd(wk,-2,GETDATE())

AND DateTime <= GetDate()")
I easily get the last two weeks but the query obviously only grabs the data at the time the query runs. I need to be able to run it any time of the day but only grab the data at 10pm. I'm very new at this so please excuse my ignorance but I could really use some help with this. Thanks very much.

View 4 Replies View Related

Select Query Based Upon Results Of Another Select Query??

Sep 6, 2006

Hi, not exactly too sure if this can be done but I have a need to run a query which will return a list of values from 1 column. Then I need to iterate this list to produce the resultset for return.
This is implemented as a stored procedure

declare @OwnerIdent varchar(7)
set @OwnerIdent='A12345B'

SELECT table1.val1 FROM table1 INNER JOIN table2
ON table1. Ident = table2.Ident
WHERE table2.Ident = @OwnerIdent

'Now for each result of the above I need to run the below query

SELECT Clients.Name , Clients.Address1 ,
Clients.BPhone, Clients.email
FROM Clients INNER JOIN Growers ON Clients.ClientKey = Growers.ClientKey
WHERE Growers.PIN = @newpin)

'@newpin being the result from first query

Any help appreciated

View 4 Replies View Related

Merge Join (Full Outer Join) Never Finishes.

Jun 5, 2006

I have a merge join (full outer join) task in a data flow. The left input comes from a flat file source and then a script transformation which does some custom grouping. The right input comes from an oledb source. The script transformation output is asynchronous (SynchronousInputID=0). The left input has many more rows (200,000+) than the right input (2,500). I run it from VS 2005 by right-click/execute on the data flow task. The merge join remains yellow and the task never finishes. I do see a row count above the flat file destination that reaches a certain number and seems to get stuck there. When I test with a smaller file on the left it works OK. Any suggestions?

View 3 Replies View Related

Update Never Finishes. Update Utilizes Indexes And Usually Takes 2 Min To Run.

Feb 8, 2008



Hello

I have interesting situation with one of my update statement.
Update takes 2 min to run and usually updates 20000 rows.

However lately update executes for longest time - 10 hours.
After I reindex table the updates run fine again

Please advice what can cause this
I do not think reindexing table before every update is good idea

We are running SQL 2000 SP4, Windows 2003 Server

Thank you in advance for all your help
Armine

View 17 Replies View Related

Transact SQL :: How To Get Moving Total Like Moving Average

Nov 10, 2015

I trying to get the moving total (juts as moving average). It always sum up the current record plus previous two records as well and grouped by EmpId.For example, attaching a image of excel calculation.

View 3 Replies View Related

Result Sets Using Select In Query Anlyzer Vs BCP Vs Select Into

Jul 9, 2002

When I run simple select against my view in Query Analyzer, I get result set in one sort order. The sort order differs, when I BCP the same view. Using third technique i.e. Select Into, I have observed the sort order is again different in the resulting table. My question is what is the difference in mechanisim of query analyzer, bcp, and select into.
Thanks

View 1 Replies View Related

Date Select Query - Select Between Two Dates

Aug 22, 2006

have a table with students details in it, i want to select all the students who joined a class on a particular day and then i need another query to select all students who joined classes over the course of date range eg 03/12/2003 to 12/12/2003.

i have tried with the following query, i need help putting my queries together
select * from tblstudents where classID='1' and studentstartdate between ('03/12/2004') and ('03/12/2004')

when i run this query i get this message

Server: Msg 242, Level 16, State 3, Line 1
The conversion of a char data type to a datetime data type resulted in an out-of-range datetime value.

the studentstartdate field is set as datetime 8 and the date looks like this in the table 03/12/2004 03:12:15

please help
mustfa

View 6 Replies View Related

SQL Server 2012 :: Adding Count To Query Without Duplicating Original Select Query

Aug 5, 2014

I have the following code.

SELECT _bvSerialMasterFull.SerialNumber, _bvSerialMasterFull.SNStockLink, _bvSerialMasterFull.SNDateLMove, _bvSerialMasterFull.CurrentLoc,
_bvSerialMasterFull.CurrentAccLink, _bvSerialMasterFull.StockCode, _bvSerialMasterFull.CurrentAccount, _bvSerialMasterFull.CurrentLocationDesc,
_bvSerialNumbersFull.SNTxDate, _bvSerialNumbersFull.SNTxReference, _bvSerialNumbersFull.SNTrCodeID, _bvSerialNumbersFull.SNTransType,
_bvSerialNumbersFull.SNWarehouseID, _bvSerialNumbersFull.TransAccount, _bvSerialNumbersFull.TransTypeDesc,

[code]...

However, as you can see, the original select query is run twice and joined together.What I was hoping for is this to be done in the original query without the need to duplicate the original query.

View 2 Replies View Related

SQL Server 2012 :: How To Pull Value Of Query And Not Value Of Variable When Query Using Select Top 1 Value From Table

Jun 26, 2015

how do I get the variables in the cursor, set statement, to NOT update the temp table with the value of the variable ? I want it to pull a date, not the column name stored in the variable...

create table #temptable (columname varchar(150), columnheader varchar(150), earliestdate varchar(120), mostrecentdate varchar(120))
insert into #temptable
SELECT ColumnName, headername, '', '' FROM eddsdbo.[ArtifactViewField] WHERE ItemListType = 'DateTime' AND ArtifactTypeID = 10
--column name
declare @cname varchar(30)

[code]...

View 4 Replies View Related

Transact SQL :: Use Query Results As Select Criteria For Another Query

Jul 10, 2015

I have a query that performs a comparison between 2 different databases and returns the results of the comparison. It returns 2 columns. The 1st column is the value of the object being compared, and the 2nd column is a number representing any discrepancies.What I would like to do is use the results from this 1st query in the where clause of another separate query so that this 2nd query will only run for any primary values from the 1st query where a secondary value in the 1st query is not equal to zero.I was thinking of using an "IN" function in the 2nd query to pull data from the 1st column in the 1st query where the 2nd column in the 1st query != 0, but I'm having trouble ironing out the correct syntax, and conceptualizing this optimally.

While I would prefer to only return values from the 1st query where the comparison value != 0 in order to have a concise list to work with, I am having difficulty in that the comparison value is a mathematical calculation of 2 different tables in 2 different databases, and so far I've been forced to include it in the select criteria because the where clause does not accept it.Also, I am not a DBA by trade. I am a system administrator writing SQL code for reporting data from an application I support.

View 6 Replies View Related

Transact SQL :: SELECT On Column Name From Query Result Set In Same Query?

May 9, 2015

I have a column colC in a table myTable that has a value (e.g. '0X'). The position of a non-zero character in column colC refers to the ordinal position of another column in the table myTable (in the aforementioned example, colB).

To get a column name (i.e., colA or colB) from table myTable, I can join ("ON cte.pos = cn.ORDINAL_POSITION") to INFORMATION_SCHEMA.COLUMNS for that table catalog, schema and name. But I want to show the value of what is in that column (e.g., 'ABC'), not just the name. Hoping for:

COLUMN_NAME Value
----------- -----
colB        123
colA        XYZ

I've tried dynamic SQL to no success, probably not executing the concept correctly...

Below is what I have:

CREATE TABLE myTable (colA VARCHAR(3), colB VARCHAR(3), colC VARCHAR(3))
INSERT INTO myTable (colA, colB, colC) VALUES ('ABC', '123', '0X')
INSERT INTO myTable (colA, colB, colC) VALUES ('XYZ', '789', 'X0')
;WITH cte AS
(
SELECT CAST(PATINDEX('%[^0]%', colC) AS SMALLINT) pos, STUFF(colC, 1, PATINDEX('%[^0]%', colC), '') colC

[Code] ....

View 4 Replies View Related







Copyrights 2005-15 www.BigResource.com, All rights reserved