Viewing 15 posts - 931 through 945 (of 1,957 total)
Excellent, glad you got it working.
I would like to say I understood what you are doing with it and that it looked like a good solution, but I don't, so...
April 9, 2013 at 11:23 am
SQL_Surfer (4/8/2013)
I need to set the unicode property of a connection manager (which is a variable) to true in a Script Task. Can you please help?
What do you mean by...
April 8, 2013 at 6:48 pm
Michael.Gibson (4/8/2013)
Our organisation has some strict firewall infrastructure in place that prevents us from accessing MS SQL databases from our desktops. In the Oracle world, we have to access...
April 8, 2013 at 6:01 pm
I wrote it now, so despite Luis excellent answer I am posting it - seems a waste otherwise 😛
-- OP Setup Code --
If Object_Id('TempDB..#Editions', 'U') Is Not Null
Drop Table #Editions
Create...
April 8, 2013 at 5:54 pm
Can you explain what role #Editions will play in producing the results?
April 8, 2013 at 4:38 pm
Hi Nemachtiani,
Thanks, that is much more helpful 🙂
I suspect that something is causing the transaction to rollback in the SQL SP, which is causing a problem with the .NET transaction...
April 8, 2013 at 11:41 am
Lowell (4/8/2013)
I've done this a few times;here's a link to a slightly modified version of Microsofts Microsoft.ApplicationBlocks.Data SQLHelper.cs class, which i ran thru a converter, and then enhanced.
Lowell, that code...
April 8, 2013 at 11:26 am
Nemachtiani (4/8/2013)
Sorry for being "vague" but cannot just post all code for obvious reasons...
I'll check with detail your tip about "byref"...just don't know why the "byval" have been...
April 8, 2013 at 10:05 am
I'm not getting this...
Why are you not just doing something like this:
declare @xml xml = '<Codes>
<code id="1">A</code>
<code id="2">B</code>
<code id="400">Z</code>
</Codes>'
select
...
April 8, 2013 at 9:59 am
Hi,
It is really difficult from the description of the problem to give any good advice.
I looked at your MSDN forum post and found that to be just as vague.
Can you...
April 8, 2013 at 9:46 am
patrickmcginnis59 10839 (4/8/2013)
opc.three (4/7/2013)
Jeff Moden (4/6/2013)
Shifting gears a bit, you've been stressing the auditing aspect of things. What type of system auditing do you currently have setup on your...
April 8, 2013 at 7:42 am
You need to hook up the InfoMessage Event on the SqlConnection, and set the property FireInfoMessageEventOnUserErrors on the SqlConnection to True.
Now you can use PRINT and RAISERROR in your SQL...
April 8, 2013 at 7:39 am
SQL_Surfer (4/5/2013)
-w -T -t"|" -r"" -c -q
Seems like one switch is overiding the other. File looks different...
April 5, 2013 at 2:11 pm
TheSQLGuru (4/5/2013)
...I would hope that the two executions of the CTE happening together in milliseconds would return the same 10 rows...
Personally I prefer to not rely on "hope" to get...
April 5, 2013 at 10:41 am
Viewing 15 posts - 931 through 945 (of 1,957 total)