Viewing 15 posts - 751 through 765 (of 7,168 total)
It's impossible for me to know because I need a lot more info than can easily be provided on a forum, but you might be hitting a double-hop/fallback scenario.
Theory: when...
September 8, 2014 at 12:35 am
The cost estimates of all operators within a query execution plan are supposed to add up to 100%. If you're inserting a row then it should be natural to accept...
September 8, 2014 at 12:26 am
Never gave it a second thought but figured deferred name resolution should be in play during synonym creation. Thanks for the question.
September 8, 2014 at 12:14 am
Try casting all your string literals to NVARCHAR(MAX) BEFORE they are concatenated. The data type is likely being assumed to be NVARCHAR(4000) during concatenation because it is not specified.
Like...
September 8, 2014 at 12:10 am
Here is a great place to start learning about indexes in SQL Server, from the beginning:
Stairway to SQL Server Indexes: Level 1, Introduction to Indexes[/url]
September 8, 2014 at 12:04 am
In theory a Script Component used in a Data Flow Task could work for you.
Some links that may help get you started:
Here is one that demos using a Script Component...
September 8, 2014 at 12:00 am
Does your bat file actually contain a call like this?
[font="Courier New"]java -jar E:\DH\Work\Simmetrics.jar %1 %2[/font]
If so, then %1 and %2 will take their values from parameters passed to the bat...
September 7, 2014 at 11:49 pm
Nita Reddy (8/18/2014)
September 6, 2014 at 8:01 pm
Gotta love their honesty 😛
September 6, 2014 at 2:58 am
Attached to this post is a simple SSIS Package * that will load your file to (a slightly modified version of) your POMaster table. I think you will need some...
September 6, 2014 at 2:45 am
skavijay (9/5/2014)
HiThank you for reply.
So the table still be part of transaction and dead lock might occur is that what would you say even after disabling it?
Which feature or...
September 6, 2014 at 12:52 am
SanPoke (9/5/2014)
I set the "WatcherInputTimeoutAsWarning" = True and set the "WatcherInputTimeoutSeconds" = 10.
I have a FOREACH Loop to iterate through my "DatafileInfo" table. That FOREACH...
September 6, 2014 at 12:48 am
SanPoke (9/3/2014)
September 4, 2014 at 11:25 pm
bart.de.koning (9/1/2014)
I do not think the WMI Event handler is very reliable. I had it working for a remote UNC Fileshare but it often stopped listening without a reason....
September 2, 2014 at 7:16 pm
In the case of Oracle being the target I would go with option 2 and avoid introducing the use of OPENQUERY.
August 29, 2014 at 9:05 pm
Viewing 15 posts - 751 through 765 (of 7,168 total)