Viewing 15 posts - 6,796 through 6,810 (of 7,168 total)
This tutorial should confirm you're on the right track...and may get you closer to finishing that last 20%.
http://www.sqlshare.com/looping-through-and-loading-files-with-ssis_34.aspx
If you need more assistance go ahead and zip your SSIS package and...
March 25, 2011 at 3:42 pm
You probably inadvertently hit the Shift+Ctrl+F keyboard shortcut. Happens to me all the time and it drove me crazy until I figured out why that would happen.
March 25, 2011 at 3:25 pm
Cool. On my system the Linked Server "rpc out" property option had to be True for it to work:
EXEC master.dbo.sp_serveroption
@server=N'linked_server_name',
@optname=N'rpc...
March 25, 2011 at 3:24 pm
You're welcome 😀
March 25, 2011 at 2:35 pm
Re: Item 2:
The idea is to move your ROOT tag out a level and add the username element before the rest of the stuff. I don't have your tables so...
March 25, 2011 at 1:05 pm
Re: item 1
Is that your actual XML? If so I see two issues:
1. You have dashes prefixing some of your lines:
- <batchImport>
2. You have unescaped quotes in some attributes:
<name first_name=""?""...
March 25, 2011 at 12:44 pm
giles.clapham (3/25/2011)
Thanks for your advice, my hand is forced on the UniqueIdentifier as it MSCRM I'm affraid.
Yikes :crazy: MS = Microsoft? Which version of CRM?
giles.clapham (3/25/2011)
March 25, 2011 at 12:03 pm
What will be consuming your results? Doing this kind of work else outside the DB is also a viable option. Most reporting tools have built-in functionality well-suited for solving running...
March 25, 2011 at 11:56 am
My bad...I misread the question. SAVE TRANSACTION will let you save the inner work you've done provided you issue a COMMIT after you issue a ROLLBACK to a named savepoint...but...
March 25, 2011 at 11:52 am
Access how? Read or Write? To which event log?
You can write errors to the Application Event Log using RAISERROR:
RAISERROR('Hello World!',16,1) WITH LOG ;
You can read or write to any Event...
March 25, 2011 at 11:37 am
Yes, you can use a cursor. This is one of my few universally acceptable uses of a cursor on SQL Server. You could also take a look at the undocumented...
March 25, 2011 at 11:32 am
I just noticed that your proc is not calling itself...I took that for granted initially based on previous posts.
That said...you're welcome for the quick demo on the recursion limit...
March 25, 2011 at 11:18 am
Lowell is referring the maximum recursion level, not the max transaction level. Since your proc calls itself you need to be aware of it. Try this out in your test...
March 25, 2011 at 11:08 am
I would like to help...can you provide the DDL for both tables attached as a .sql file and maybe some DML to create a few rows. This way I can...
March 25, 2011 at 10:42 am
Viewing 15 posts - 6,796 through 6,810 (of 7,168 total)