Showing posts with label load. Show all posts
Showing posts with label load. Show all posts

Thursday, March 29, 2012

Error when trying to start Management Studio

Hello Guys,

I am getting the following error when I try to start SQL 2005 Management Studio to manage my SQL Server :

Cannot load the DLL xpstar.dll, or one of the DLLs it references. Reason: 126(The specified module could not be found.).

Any ideas ?

Thanks,

Hello

I have managed to sort it by reinstalling SQL over the current installation.

Thanks

|||

Hello,

Do you have a good idea instead of reinstall MS-SQL?

I've a lot of data in DB and always serve to customer. Can't reinstall as your suggess.

Regards,

XNOIE.

|||

Did you ever get this error fix.

I did a search for that dll and i found it, the only weird things is its not located in the same directory as my database.

Error when trying to start Management Studio

Hello Guys,

I am getting the following error when I try to start SQL 2005 Management Studio to manage my SQL Server :

Cannot load the DLL xpstar.dll, or one of the DLLs it references. Reason: 126(The specified module could not be found.).

Any ideas ?

Thanks,

Hello

I have managed to sort it by reinstalling SQL over the current installation.

Thanks

|||

Hello,

Do you have a good idea instead of reinstall MS-SQL?

I've a lot of data in DB and always serve to customer. Can't reinstall as your suggess.

Regards,

XNOIE.

|||

Did you ever get this error fix.

I did a search for that dll and i found it, the only weird things is its not located in the same directory as my database.

Error when trying to start Management Studio

Hello Guys,

I am getting the following error when I try to start SQL 2005 Management Studio to manage my SQL Server :

Cannot load the DLL xpstar.dll, or one of the DLLs it references. Reason: 126(The specified module could not be found.).

Any ideas ?

Thanks,

Hello

I have managed to sort it by reinstalling SQL over the current installation.

Thanks

|||

Hello,

Do you have a good idea instead of reinstall MS-SQL?

I've a lot of data in DB and always serve to customer. Can't reinstall as your suggess.

Regards,

XNOIE.

|||

Did you ever get this error fix.

I did a search for that dll and i found it, the only weird things is its not located in the same directory as my database.

Wednesday, March 21, 2012

error when executing sql xml bulk load

I am using the SQL bulk load 4 but am new to xsd and sql schemas. Here is
my problem. I get a bulk load error stating I need a sql:relationship for
any of my nested complex types but the elements in my nested complex type is
not going to another table but to the same table as my first complex type.
How do I create nested complex types that bulk load the elements to the same
table?
In the example below how do I represent the "Phone" as a complex type in the
xsd and have the bulk upload load the elements to the same table as my root
complex type?
Ex.
<Root>
<ContactInfo>
<FirstName></FirstName>
<LastName></LastName>
<Phone>
<Home></Home>
<Cell></Cell>
</Phone>
</ContactInfo>
</Root>
So how do i layout the xsd for the "Phone" and either not have to provide
the relationship if the data goes to the same sql table or how do I provide
the sql:relationship so I don't get the error?
Hello Semloh,
I have notice that you have send the same issue on Feb 27th which I have
replied. Please check my answer there, and if you need any further
assistance on this particular issue please reply to me in that thread so I
can follow up with you. In the future, please don't cross-post the same
question in multiple newsgroups. This will help our engineers work on your
question more efficiently. Your understanding and cooperation is
appreciated.
For your convenience, I have included my reply as follows:
Based on my research, you should follow the article to create 2 table to
get the XML file uploaded to the database.
XML Bulk Load Examples (SQLXML 4.0)
http://msdn2.microsoft.com/en-us/ms171806.aspx
In this article you could see that the XSD schema include a
sql:relationship attribute.
<xsd:schema xmlns:xsd="http://www.w3.org/2001/XMLSchema"
xmlns:sql="urn:schemas-microsoft-com:mapping-schema">
<xsd:annotation>
<xsd:appinfo>
<sql:relationship name="CustCustOrder"
parent="Cust"
parent-key="CustomerID"
child="CustOrder"
child-key="CustomerID" />
</xsd:appinfo>
</xsd:annotation>
<xsd:element name="ROOT" sql:is-constant="1" >
<xsd:complexType>
<xsd:sequence>
<xsd:element name="Customers" sql:relation="Cust" >
<xsd:complexType>
<xsd:sequence>
<xsd:element name="CustomerID" type="xsd:integer" />
<xsd:element name="CompanyName" type="xsd:string" />
<xsd:element name="City" type="xsd:string" />
<xsd:element name="Order"
sql:relation="CustOrder"
sql:relationship="CustCustOrder" >
<xsd:complexType>
<xsd:attribute name="OrderID" type="xsd:integer" />
</xsd:complexType>
</xsd:element>
</xsd:sequence>
</xsd:complexType>
</xsd:element>
</xsd:sequence>
</xsd:complexType>
</xsd:element>
</xsd:schema>
If you want to upload all the element into one table, you could use a XSLT
to transform the original XML file to up the level of your Phone element.
Sincerely,
Wei Lu
Microsoft Online Community Support
==================================================
Get notification to my posts through email? Please refer to
http://msdn.microsoft.com/subscriptions/managednewsgroups/default.aspx#notif
ications.
Note: The MSDN Managed Newsgroup support offering is for non-urgent issues
where an initial response from the community or a Microsoft Support
Engineer within 1 business day is acceptable. Please note that each follow
up response may take approximately 2 business days as the support
professional working with you may need further investigation to reach the
most efficient resolution. The offering is not appropriate for situations
that require urgent, real-time or phone-based interactions or complex
project analysis and dump analysis issues. Issues of this nature are best
handled working with a dedicated Microsoft Support Engineer by contacting
Microsoft Customer Support Services (CSS) at
http://msdn.microsoft.com/subscriptions/support/default.aspx.
==================================================
(This posting is provided "AS IS", with no warranties, and confers no
rights.)
|||Hi,
If the Phone element is just a wrapper for Home and Cell (whch will be
mapped to fileds in the database) that you can use sql:is-constant="true" on
the Phone element and you don't need relationship.
I hope this helps.
Thanks,
Monica Frintu
"semloh" wrote:

> I am using the SQL bulk load 4 but am new to xsd and sql schemas. Here is
> my problem. I get a bulk load error stating I need a sql:relationship for
> any of my nested complex types but the elements in my nested complex type is
> not going to another table but to the same table as my first complex type.
> How do I create nested complex types that bulk load the elements to the same
> table?
> In the example below how do I represent the "Phone" as a complex type in the
> xsd and have the bulk upload load the elements to the same table as my root
> complex type?
> Ex.
> <Root>
> <ContactInfo>
> <FirstName></FirstName>
> <LastName></LastName>
> <Phone>
> <Home></Home>
> <Cell></Cell>
> </Phone>
> </ContactInfo>
> </Root>
>
> So how do i layout the xsd for the "Phone" and either not have to provide
> the relationship if the data goes to the same sql table or how do I provide
> the sql:relationship so I don't get the error?
>

error when executing sql xml bulk load

I am using the SQL bulk load 4 but am new to xsd and sql schemas. Here is
my problem. I get a bulk load error stating I need a sql:relationship for
any of my nested complex types but the elements in my nested complex type is
not going to another table but to the same table as my first complex type.
How do I create nested complex types that bulk load the elements to the same
table?
In the example below how do I represent the "Phone" as a complex type in the
xsd and have the bulk upload load the elements to the same table as my root
complex type?
Ex.
<Root>
<ContactInfo>
<FirstName></FirstName>
<LastName></LastName>
<Phone>
<Home></Home>
<Cell></Cell>
</Phone>
</ContactInfo>
</Root>
So how do i layout the xsd for the "Phone" and either not have to provide
the relationship if the data goes to the same sql table or how do I provide
the sql:relationship so I don't get the error?Hello Semloh,
I have notice that you have send the same issue on Feb 27th which I have
replied. Please check my answer there, and if you need any further
assistance on this particular issue please reply to me in that thread so I
can follow up with you. In the future, please don't cross-post the same
question in multiple newsgroups. This will help our engineers work on your
question more efficiently. Your understanding and cooperation is
appreciated.
For your convenience, I have included my reply as follows:
---
Based on my research, you should follow the article to create 2 table to
get the XML file uploaded to the database.
XML Bulk Load Examples (SQLXML 4.0)
http://msdn2.microsoft.com/en-us/ms171806.aspx
In this article you could see that the XSD schema include a
sql:relationship attribute.
<xsd:schema xmlns:xsd="http://www.w3.org/2001/XMLSchema"
xmlns:sql="urn:schemas-microsoft-com:mapping-schema">
<xsd:annotation>
<xsd:appinfo>
<sql:relationship name="CustCustOrder"
parent="Cust"
parent-key="CustomerID"
child="CustOrder"
child-key="CustomerID" />
</xsd:appinfo>
</xsd:annotation>
<xsd:element name="ROOT" sql:is-constant="1" >
<xsd:complexType>
<xsd:sequence>
<xsd:element name="Customers" sql:relation="Cust" >
<xsd:complexType>
<xsd:sequence>
<xsd:element name="CustomerID" type="xsd:integer" />
<xsd:element name="CompanyName" type="xsd:string" />
<xsd:element name="City" type="xsd:string" />
<xsd:element name="Order"
sql:relation="CustOrder"
sql:relationship="CustCustOrder" >
<xsd:complexType>
<xsd:attribute name="OrderID" type="xsd:integer" />
</xsd:complexType>
</xsd:element>
</xsd:sequence>
</xsd:complexType>
</xsd:element>
</xsd:sequence>
</xsd:complexType>
</xsd:element>
</xsd:schema>
If you want to upload all the element into one table, you could use a XSLT
to transform the original XML file to up the level of your Phone element.
---
Sincerely,
Wei Lu
Microsoft Online Community Support
========================================
==========
Get notification to my posts through email? Please refer to
http://msdn.microsoft.com/subscript...ault.aspx#notif
ications.
Note: The MSDN Managed Newsgroup support offering is for non-urgent issues
where an initial response from the community or a Microsoft Support
Engineer within 1 business day is acceptable. Please note that each follow
up response may take approximately 2 business days as the support
professional working with you may need further investigation to reach the
most efficient resolution. The offering is not appropriate for situations
that require urgent, real-time or phone-based interactions or complex
project analysis and dump analysis issues. Issues of this nature are best
handled working with a dedicated Microsoft Support Engineer by contacting
Microsoft Customer Support Services (CSS) at
http://msdn.microsoft.com/subscript...t/default.aspx.
========================================
==========
(This posting is provided "AS IS", with no warranties, and confers no
rights.)|||Hi,
If the Phone element is just a wrapper for Home and Cell (whch will be
mapped to fileds in the database) that you can use sql:is-constant="true" on
the Phone element and you don't need relationship.
I hope this helps.
Thanks,
--
Monica Frintu
"semloh" wrote:

> I am using the SQL bulk load 4 but am new to xsd and sql schemas. Here is
> my problem. I get a bulk load error stating I need a sql:relationship for
> any of my nested complex types but the elements in my nested complex type
is
> not going to another table but to the same table as my first complex type.
> How do I create nested complex types that bulk load the elements to the sa
me
> table?
> In the example below how do I represent the "Phone" as a complex type in t
he
> xsd and have the bulk upload load the elements to the same table as my roo
t
> complex type?
> Ex.
> <Root>
> <ContactInfo>
> <FirstName></FirstName>
> <LastName></LastName>
> <Phone>
> <Home></Home>
> <Cell></Cell>
> </Phone>
> </ContactInfo>
> </Root>
>
> So how do i layout the xsd for the "Phone" and either not have to provide
> the relationship if the data goes to the same sql table or how do I provid
e
> the sql:relationship so I don't get the error?
>

Error when deploying on Server 2003

I built a utility that grabs large XML string from a database and then uses XML bulk load to shread the data in to 4 seperate tables. Everything works great on my box, but when I tried to move it to the dev server I started getting errors.

The first error I got was: Exception: Retrieving the COM class factory for component with CLSID {19AA7334-069C-437F-BFE4-CC9894DB8504} failed due to the following error: 80040154.

I evetually figured out that the XML bulkload dll 'xblkld4.dll' was not registered. I had a hard time getting the DLL registered as it was dependant on a lot of other dll's. Finally I copied all of the dll's from C:\Program Files\Common Files\System\Ole DB that had XML in them and I was able to register.

Now I am getting a new error that I can't find any information on. When the XML bulk load executes, I get the exception: Error creating SAX reader.

Is there a sax reader dll that I need to copy to the dev server and register? Does anybody have any ideas?

~Jason

I think this article may help you deploy your solution and fix your problems.

http://msdn2.microsoft.com/en-us/library/ms171744.aspx

Error when deploying on Server 2003

I built a utility that grabs large XML string from a database and then uses XML bulk load to shread the data in to 4 seperate tables. Everything works great on my box, but when I tried to move it to the dev server I started getting errors.

The first error I got was: Exception: Retrieving the COM class factory for component with CLSID {19AA7334-069C-437F-BFE4-CC9894DB8504} failed due to the following error: 80040154.

I evetually figured out that the XML bulkload dll 'xblkld4.dll' was not registered. I had a hard time getting the DLL registered as it was dependant on a lot of other dll's. Finally I copied all of the dll's from C:\Program Files\Common Files\System\Ole DB that had XML in them and I was able to register.

Now I am getting a new error that I can't find any information on. When the XML bulk load executes, I get the exception: Error creating SAX reader.

Is there a sax reader dll that I need to copy to the dev server and register? Does anybody have any ideas?

~Jason

I think this article may help you deploy your solution and fix your problems.

http://msdn2.microsoft.com/en-us/library/ms171744.aspx

Wednesday, March 7, 2012

Error using Reporting Services On windows 64 bit

I get the following error when i try to acces to the reporting services web
site.
Attempted to load a 64-bit assembly on a 32-bit platform. Use
ReflectionOnlyLoad() instead if trying to load for reflection purposes.
I have no idea of the source of the error (it is really a 64 bit edition of
windows)
If you have an idea,
ThanksAre you sure that you are not using a 32 bits version of SQRS on a 64 bits
machine?
In this case, have a look to this article
http://msdn2.microsoft.com/ms143293.aspx
Med Bouchenafa
"Cyprien Autexier" <autexi_c@.3ie.org> a écrit dans le message de news:
uqBrolOJGHA.3224@.TK2MSFTNGP09.phx.gbl...
>I get the following error when i try to acces to the reporting services web
>site.
> Attempted to load a 64-bit assembly on a 32-bit platform. Use
> ReflectionOnlyLoad() instead if trying to load for reflection purposes.
> I have no idea of the source of the error (it is really a 64 bit edition
> of windows)
> If you have an idea,
> Thanks
>

Error using Execute Package Task

I'm trying to run a package from another package using Execute package task -

I'm getting the error:

Error: Error 0xC0012050 while preparing to load the package. Package failed validation from the ExecutePackage task. The package cannot run. .

I have Delay validation on the child package. Any other suggestions?

Thanks

I am perhaps wrong about this but I don't think setting DelayValidation=TRUE on the package prevents tasks from getting validated. If you have tasks that you don't want to validate when the package starts then set DelayValidation=TRUE on the TaskHost.

-Jamie

|||

I have every task/step in the child package set to delay validation. I can run it stand-alone no problem - just can't get it to run from another package

|||

A shot in the dark but do you have DelayValidation=TRUE on your connection managers as well?

-Jamie

|||I set them as well. I also tried disabling every step in the control flow of the child package and I still got the error|||

Then I can only think that one of your tasks is failing validation when it comes to execute. If this is the case you should have more details in the package log if you have one. And if you don't, you probably should.

-Jamie

|||

Not sure this helps much - I get the OnPostValidate and then the OnError with message that I mentioned at the beginning?

OnPostValidate,SARASINXPLT,VISIBILITY\sarasin,Payroll Stage,{AA054E03-67C2-4511-898E-58706A82A16B},{5F75D1F4-52F4-47CF-85B0-9F5542364939},2/9/2006 8:56:55 AM,2/9/2006 8:56:55 AM,0,0x,(null)

OnError,SARASINXPLT,VISIBILITY\sarasin,Payroll Stage,{AA054E03-67C2-4511-898E-58706A82A16B},{5F75D1F4-52F4-47CF-85B0-9F5542364939},2/9/2006 8:56:57 AM,2/9/2006 8:56:57 AM,-1073602332,0x,Error 0xC0012050 while preparing to load the package. Package failed validation from the ExecutePackage task. The package cannot run.

|||

I had an identical scenario. The package would run standalone; however, I could not run the package from another package. I had DelayValidation=TRUE at the package level and all tasks in the package were DelayValidation=FALSE.

My resolution was to set DelayValidation=FALSE at the package level and to set DelayValidation=TRUE for all the tasks.

|||Thanks GoZags! I had the same issue and I struggled for hours this morning before coming across this post - I just wish I had looked here sooner, it would have saved me a ton of frustration!|||

To All:

We were getting the same error message.

However, we discovered that it was the result of setting up our package to run on an environment variable, creating the environment variables on the target SQL Server machine, but failed to restart SQL Server Services so that it would be aware of the new environment variables.

DOH!

|||

GoZags, Jamie thanks for your imput, this bit of information has helped me as well, it solved the error above.

Error using Execute Package Task

I'm trying to run a package from another package using Execute package task -

I'm getting the error:

Error: Error 0xC0012050 while preparing to load the package. Package failed validation from the ExecutePackage task. The package cannot run. .

I have Delay validation on the child package. Any other suggestions?

Thanks

I am perhaps wrong about this but I don't think setting DelayValidation=TRUE on the package prevents tasks from getting validated. If you have tasks that you don't want to validate when the package starts then set DelayValidation=TRUE on the TaskHost.

-Jamie

|||

I have every task/step in the child package set to delay validation. I can run it stand-alone no problem - just can't get it to run from another package

|||

A shot in the dark but do you have DelayValidation=TRUE on your connection managers as well?

-Jamie

|||I set them as well. I also tried disabling every step in the control flow of the child package and I still got the error|||

Then I can only think that one of your tasks is failing validation when it comes to execute. If this is the case you should have more details in the package log if you have one. And if you don't, you probably should.

-Jamie

|||

Not sure this helps much - I get the OnPostValidate and then the OnError with message that I mentioned at the beginning?

OnPostValidate,SARASINXPLT,VISIBILITY\sarasin,Payroll Stage,{AA054E03-67C2-4511-898E-58706A82A16B},{5F75D1F4-52F4-47CF-85B0-9F5542364939},2/9/2006 8:56:55 AM,2/9/2006 8:56:55 AM,0,0x,(null)

OnError,SARASINXPLT,VISIBILITY\sarasin,Payroll Stage,{AA054E03-67C2-4511-898E-58706A82A16B},{5F75D1F4-52F4-47CF-85B0-9F5542364939},2/9/2006 8:56:57 AM,2/9/2006 8:56:57 AM,-1073602332,0x,Error 0xC0012050 while preparing to load the package. Package failed validation from the ExecutePackage task. The package cannot run.

|||

I had an identical scenario. The package would run standalone; however, I could not run the package from another package. I had DelayValidation=TRUE at the package level and all tasks in the package were DelayValidation=FALSE.

My resolution was to set DelayValidation=FALSE at the package level and to set DelayValidation=TRUE for all the tasks.

|||Thanks GoZags! I had the same issue and I struggled for hours this morning before coming across this post - I just wish I had looked here sooner, it would have saved me a ton of frustration!|||

To All:

We were getting the same error message.

However, we discovered that it was the result of setting up our package to run on an environment variable, creating the environment variables on the target SQL Server machine, but failed to restart SQL Server Services so that it would be aware of the new environment variables.

DOH!

|||

GoZags, Jamie thanks for your imput, this bit of information has helped me as well, it solved the error above.

Error using Execute Package Task

I'm trying to run a package from another package using Execute package task -

I'm getting the error:

Error: Error 0xC0012050 while preparing to load the package. Package failed validation from the ExecutePackage task. The package cannot run. .

I have Delay validation on the child package. Any other suggestions?

Thanks

I am perhaps wrong about this but I don't think setting DelayValidation=TRUE on the package prevents tasks from getting validated. If you have tasks that you don't want to validate when the package starts then set DelayValidation=TRUE on the TaskHost.

-Jamie

|||

I have every task/step in the child package set to delay validation. I can run it stand-alone no problem - just can't get it to run from another package

|||

A shot in the dark but do you have DelayValidation=TRUE on your connection managers as well?

-Jamie

|||I set them as well. I also tried disabling every step in the control flow of the child package and I still got the error|||

Then I can only think that one of your tasks is failing validation when it comes to execute. If this is the case you should have more details in the package log if you have one. And if you don't, you probably should.

-Jamie

|||

Not sure this helps much - I get the OnPostValidate and then the OnError with message that I mentioned at the beginning?

OnPostValidate,SARASINXPLT,VISIBILITY\sarasin,Payroll Stage,{AA054E03-67C2-4511-898E-58706A82A16B},{5F75D1F4-52F4-47CF-85B0-9F5542364939},2/9/2006 8:56:55 AM,2/9/2006 8:56:55 AM,0,0x,(null)

OnError,SARASINXPLT,VISIBILITY\sarasin,Payroll Stage,{AA054E03-67C2-4511-898E-58706A82A16B},{5F75D1F4-52F4-47CF-85B0-9F5542364939},2/9/2006 8:56:57 AM,2/9/2006 8:56:57 AM,-1073602332,0x,Error 0xC0012050 while preparing to load the package. Package failed validation from the ExecutePackage task. The package cannot run.

|||

I had an identical scenario. The package would run standalone; however, I could not run the package from another package. I had DelayValidation=TRUE at the package level and all tasks in the package were DelayValidation=FALSE.

My resolution was to set DelayValidation=FALSE at the package level and to set DelayValidation=TRUE for all the tasks.

|||Thanks GoZags! I had the same issue and I struggled for hours this morning before coming across this post - I just wish I had looked here sooner, it would have saved me a ton of frustration!|||

To All:

We were getting the same error message.

However, we discovered that it was the result of setting up our package to run on an environment variable, creating the environment variables on the target SQL Server machine, but failed to restart SQL Server Services so that it would be aware of the new environment variables.

DOH!

|||

GoZags, Jamie thanks for your imput, this bit of information has helped me as well, it solved the error above.

Error using Execute Package Task

I'm trying to run a package from another package using Execute package task -

I'm getting the error:

Error: Error 0xC0012050 while preparing to load the package. Package failed validation from the ExecutePackage task. The package cannot run. .

I have Delay validation on the child package. Any other suggestions?

Thanks

I am perhaps wrong about this but I don't think setting DelayValidation=TRUE on the package prevents tasks from getting validated. If you have tasks that you don't want to validate when the package starts then set DelayValidation=TRUE on the TaskHost.

-Jamie

|||

I have every task/step in the child package set to delay validation. I can run it stand-alone no problem - just can't get it to run from another package

|||

A shot in the dark but do you have DelayValidation=TRUE on your connection managers as well?

-Jamie

|||I set them as well. I also tried disabling every step in the control flow of the child package and I still got the error|||

Then I can only think that one of your tasks is failing validation when it comes to execute. If this is the case you should have more details in the package log if you have one. And if you don't, you probably should.

-Jamie

|||

Not sure this helps much - I get the OnPostValidate and then the OnError with message that I mentioned at the beginning?

OnPostValidate,SARASINXPLT,VISIBILITY\sarasin,Payroll Stage,{AA054E03-67C2-4511-898E-58706A82A16B},{5F75D1F4-52F4-47CF-85B0-9F5542364939},2/9/2006 8:56:55 AM,2/9/2006 8:56:55 AM,0,0x,(null)

OnError,SARASINXPLT,VISIBILITY\sarasin,Payroll Stage,{AA054E03-67C2-4511-898E-58706A82A16B},{5F75D1F4-52F4-47CF-85B0-9F5542364939},2/9/2006 8:56:57 AM,2/9/2006 8:56:57 AM,-1073602332,0x,Error 0xC0012050 while preparing to load the package. Package failed validation from the ExecutePackage task. The package cannot run.

|||

I had an identical scenario. The package would run standalone; however, I could not run the package from another package. I had DelayValidation=TRUE at the package level and all tasks in the package were DelayValidation=FALSE.

My resolution was to set DelayValidation=FALSE at the package level and to set DelayValidation=TRUE for all the tasks.

|||Thanks GoZags! I had the same issue and I struggled for hours this morning before coming across this post - I just wish I had looked here sooner, it would have saved me a ton of frustration!|||

To All:

We were getting the same error message.

However, we discovered that it was the result of setting up our package to run on an environment variable, creating the environment variables on the target SQL Server machine, but failed to restart SQL Server Services so that it would be aware of the new environment variables.

DOH!

|||

GoZags, Jamie thanks for your imput, this bit of information has helped me as well, it solved the error above.

|||Hey thank you it solved my problem. But, it is Weird that we need to leave DelayValidation=FALSE at the package level but set DelayValidation=TRUE for all the tasks..? anyway it works thanks for clarifying this.