Viewing 15 posts - 91 through 105 (of 257 total)
I just need to understand one thing. If you have a DML statement that updates multiple records (whether Insert, Update, or Delete), does the trigger fire multiple times (once...
June 26, 2007 at 7:28 am
One thing about SSIS is that you can pretty much NEVER see the variables being updated. You just have to assume everything went well. If you really want...
June 13, 2007 at 4:04 am
The easiest way is to create an XML Task in SSIS which reads in an Xml File that contains all the Servers and Credentials that you need to connect to...
June 8, 2007 at 12:57 pm
Yes, setup a DataFlow task which imports these files. Add a Connection to the Connection Managers for the File (you might need to setup a different Connection manager if...
June 8, 2007 at 12:46 pm
Start with an "Xml Task" (maybe nested within a ForEach File Enumerator if you have many files to process). Here's how my Xml Task is setup:
Operation Type: XPath
Source Type:...
June 8, 2007 at 12:33 pm
Robert, you can probably also set the variables by using a Named Parameter (this probably requires an ADO.NET Connection). You query would need to include that parameter: "Select...
May 22, 2007 at 7:17 am
In my experience with running Queries in .NET apps vs. Query Analyzer is that most don't actually call the Procedures or Ad-hac queries in the same way. For example,...
May 7, 2007 at 10:01 pm
I've used this before and it works nicely. There's really little performance impact because you're not really going to need to parse the audit data all the time.
You might...
April 18, 2007 at 1:38 pm
Sorry, I should have been more specific. Do the logs still contain Re-indexing transactions if the Recovery Mode is set to Bulk Logged?
April 17, 2007 at 7:10 pm
Does anyone have an idea if Log-shipping will propogate the ReIndexing on the destination server? For example, if we're reindexing before shipping the log, will those changes be seen...
April 16, 2007 at 9:11 am
Never mind, I figured it out! This Xml crap is definitely a LOT harder to figure out than OPENXML. At least with OPENXML you could guess better what...
April 11, 2007 at 2:00 pm
This really doesn't explain anything about selecting values from Elements in the Xml. You should have explained both scenarios: 1.) having values as Attributes (which you did) and 2.)...
April 11, 2007 at 10:29 am
Hmm, I'm not sure I really want to do that. I have managed to consolidate the data down to 42,000+ records, however, I can't imagine inserting all that into another...
November 29, 2006 at 3:18 am
I'm quite aware of that. The function I wrote contains a Parameter "@Accuracy" which can be set 1 - 3 (1 being the most accurate). I posted the...
November 26, 2006 at 7:42 pm
Thanks for the replies, I guess it had to be done the long way. BTW, this was for a function, the function was enhanced using bits and pieces from...
November 21, 2006 at 5:16 pm
Viewing 15 posts - 91 through 105 (of 257 total)