Viewing 15 posts - 6,871 through 6,885 (of 7,168 total)
I was a full-time C#/SQL dev 4 years ago (80/20 split) and I could not stand SSIS when it first hit the scene because it seemingly made things so much...
March 18, 2011 at 7:43 pm
I made up some DML since you did not provide any :Whistling:
INSERT INTO dbo.root(root_id)VALUES (1)
INSERT INTO dbo.subroot(subroot_id, root_id)VALUES (1,1)
INSERT INTO dbo.tempxml(subroot_id, childnodes)VALUES (1,'<data value="test"/><data value="test2"/><otherdata value="test3"/>')
With your...
March 18, 2011 at 4:57 pm
Thanks for playing along too...I thought this might be doable using the Pivot transformation however I have decided 'no'. If the elements were Child1, Child2, Child3, Car1, Car2, Car3, etc....
March 18, 2011 at 4:42 pm
I like that idea. It would definitely reduce the number of forums and make sure people are in the right place. That's how things are organized on the mothership's forums...
March 18, 2011 at 3:31 pm
Jason Selburg (3/18/2011)
I think I've found a Question of the day to submit....
March 18, 2011 at 3:11 pm
Something like this should get the job done quickly and dirtily as long as you have a decent enough sample size to hand to TABLESAMPLE. Be aware however that TABLESAMPLE...
March 18, 2011 at 2:46 pm
I think I am close...but not quite there...could you adapt your initial schema doc to your example XML please so the names and elements match up? I think Child and...
March 18, 2011 at 2:37 pm
No. They are different. A server can host one default instance and/or many named instances. A default instance has no instance name and can be accessed without providing a port...
March 18, 2011 at 2:22 pm
Witch-hunt anyone? If you have backups of your msdb database you can restore those starting with your oldest backup in chronological order to a non-critical instance as a database with...
March 18, 2011 at 2:00 pm
ejdonavan, I am assuming this is a SQL 2008 SSIS Package because I cannot open it in BIDS 2005. It'll need to wait until tonight before I can have a...
March 18, 2011 at 1:35 pm
I wish I could say definitively...I just know that ADO.NET handles it and OLE DB [may] not. I say [may] because I haven't isolated any cases when you can use...
March 18, 2011 at 1:20 pm
Seriously!?! Your asking for us to help you with a problem directly from a certification course you're taking?
If you have a specific question about SQL I would be happy to...
March 18, 2011 at 12:22 pm
Sounds like its setup correctly but SSIS being mostly visual it's hard to say what the issue might be...can you zip it up and post the package as an attachment?
March 18, 2011 at 11:56 am
You can check the level of the current DB using this:
SELECT compatibility_level
FROM sys.databases
WHERE database_id = DB_ID()
March 18, 2011 at 11:42 am
Viewing 15 posts - 6,871 through 6,885 (of 7,168 total)