Viewing 15 posts - 46 through 60 (of 130 total)
Sorry then but my best suggestion would be starting the walkthrough from the beginning in a fresh project. Compare your settings with the other developers that's working including service...
August 25, 2006 at 8:04 am
Okay, this is a bit tricky remotely but here goes.
Firstly, are you connecting to a SQL 2000 or SQL 2005 database ? If it's 2005 remote connections can be...
August 25, 2006 at 6:26 am
More than likely you're connecting using integrated security and the user context under which the web page is running is either invalid/null (the "double hop" scenario) or doesn't have access...
August 25, 2006 at 1:19 am
You have to download a third party zip program like http://www.7-zip.org or http://www.freebyte.com/fbzip/ and shell out from the package or write your own in .Net
August 24, 2006 at 1:21 am
If you're going to use SSIS I answered a similar question here http://www.sqlservercentral.com/forums/shwmessage.aspx?forumid=148&messageid=291798
Instead of using a StreamWriter you could create an XMLDocument or XMLTextWriter which will enable you...
August 22, 2006 at 6:26 am
How are you persisting the generated xml ? I've never seen SQL Server generate the xml declaration and there's no way I can see of inserting it into the...
August 22, 2006 at 1:34 am
Just had another thought. When referring to variables you need to specify the Variables collection of the Dts object i.e.
Dts.Variables("User::XMLContent").Value
and not
DtsVariables("User::XMLContent").Value
as you seem to have done. Also...
July 5, 2006 at 12:55 am
Sounds very odd. I do think that the SSIS Visual Studio interface is a bit flaky and there's been a couple of instances where I've had to scrap packages...
July 5, 2006 at 12:50 am
I'm no SSIS guru but this is how I managed to do it
1. Create new package
2. Add SQL connection manager for server you're connecting to
3. Add Execute SQL task to...
July 4, 2006 at 1:52 am
My first thought is that you seem to be concatenating the path twice instead of the path and filename
i.e.
If System.IO.File.Exists((CStr(DTSVariables("ProductBuyListFileLocation").Value) + (CStr(DTSVariables("ProductBuyListFileLocation").Value)))) Then
instead of
If System.IO.File.Exists((CStr(DTSVariables("ProductBuyListFileLocation").Value) + (CStr(DTSVariables("ProductBuyListFileName").Value)))) Then
Also, there...
July 4, 2006 at 1:24 am
No, there is no built-in way that I know of to do this with For XML but you could enhance your query to look up the datatypes for your table...
June 26, 2006 at 1:13 am
I've just tried it in Management Studio and it seems to work fine. Just selected Flat File Source, set " as Text Qualifier, clicked on Columns, clicked the mouse...
June 20, 2006 at 2:02 am
SQL injection doesn't need to come from free text, it's pretty simple to create a bespoke HTML post simulating OPTION values containing whatever you want.
It's not a point that I...
June 16, 2006 at 3:20 am
Not that I can see. Also, you are right text/ntext datatypes can't be used for local variables but they can be used for stored procedure parameters. You could therefore...
June 16, 2006 at 2:49 am
nileshsane, I'd recommend using something like SQLXML and bulk loading the files if they are this size.
June 16, 2006 at 1:44 am
Viewing 15 posts - 46 through 60 (of 130 total)