Viewing 15 posts - 106 through 120 (of 2,037 total)
Hi Matthew
System.Reflection.TargetInvocationException: Exception has been thrown by the target of an invocation. ---> System.ObjectDisposedException: Cannot access a disposed object.
Object name: 'Invalid attempt to call Read when the stream is closed.'.
System.ObjectDisposedException:...
December 25, 2009 at 2:52 am
Hi David
Thanks for your feedback.
So, I should goon with my source data structure? Independent of the snowflake in this case? There are not too many rows in this complete structure...
December 23, 2009 at 7:51 am
Hi Vaibhav
SQL Server Compact does not support things like linked servers. If your table doesn't contain too many rows, load them into a DataTable, set the rows as modified and...
December 23, 2009 at 6:19 am
You can find Profiler in menu -> Tools -> SQL Profiler. Have a look for events "SQL:BatchCompleted" and "RPC:BatchCompleted".
For triggers read this article:
Greets
Flo
December 19, 2009 at 11:27 am
December 19, 2009 at 10:56 am
Hi
You can use SQL Profiler to trace your table. Another option would be a trigger.
Greets
Flo
December 19, 2009 at 10:55 am
Hi
DELETE FROM table 1 WHERE column1 in (SELECT Column1 FROM Table2)
Do you really not have any criteria you provide from your outside table1 into your sub-query?
Did you check your...
December 17, 2009 at 12:13 pm
Hi
Please provide some more detailed information how you handle your data deletion. Do you work with a cursor?
Greets
Flo
December 17, 2009 at 10:07 am
C# Screw (11/18/2009)
Oh look ! I have become a ValuedMember :blush:
Congrats Screw!
And thanks for all your time to do those tests 🙂
Greets
Flo
November 18, 2009 at 2:23 pm
C# Screw (11/18/2009)
Florian Reischl (11/18/2009)
Good point, maybe try this instead of the StringBuilder:
string[] parts = s.Split(new char[] { ' ', '\t' });
return string.Join(" ", parts);
But I think the...
November 18, 2009 at 2:07 pm
Paul White (11/18/2009)
I should have known you'd get your revenge! Man, that made me snigger out loud at my...
November 18, 2009 at 1:59 pm
Hi C# Screw
Good point, maybe try this instead of the StringBuilder:
string[] parts = s.Split(new char[] { ' ', '\t' });
return string.Join(" ", parts);
But I think the char-loop based solutions will...
November 18, 2009 at 1:48 pm
Good morning Paul!
Paul White (11/18/2009)
... my (still slightly amateur) C# as usual!
Well, now I have to say this to you:
I don't know how much you are working with C#, but...
November 18, 2009 at 12:39 pm
C# Screw, try to call him "Michael" or "Michael Meierruth". "Old Hand" is his state depending on the count of posts here - like "SSC Rookie" in your case. 😉
November 18, 2009 at 6:57 am
C# Screw (11/18/2009)
Then others could test - but I am worried to do so its asking people to install a dll
that...
November 18, 2009 at 5:52 am
Viewing 15 posts - 106 through 120 (of 2,037 total)