Viewing 15 posts - 136 through 150 (of 251 total)
I tend to agree. I think the SQLCLR is a red herring, or at least is a minor contributor to what the problem really is. Can you post the code...
December 30, 2010 at 10:12 am
Any chance you could post some code?
December 29, 2010 at 2:43 pm
Any chance you could post some code? Are you sure you're properly releasing resources that you're referencing in your code? It sounds like maybe you're not (and you're using DataSets...
December 22, 2010 at 7:22 am
The promise of BI and data anlysis tools is not to show you where you already are. Rather, it's to help you discover things that you may not know, and...
December 3, 2010 at 7:19 am
Jeff Moden (11/18/2010)
Jeff Moden (11/4/2010)
I have to ask because I just don't know... Hopefully, one of you do. Is CDONTS and sp_OA* available in SQL Server Express?Anyone?
I'm not certain,...
November 19, 2010 at 7:09 am
ashwin.nprabhu (11/4/2010)
The article is very interesting, but just wanted to ask if the same thing can be explained using C# as reference for people like me.
I don't think I would...
November 4, 2010 at 7:32 am
Yup, code page 1252 is the ANSI code page so it all makes more sense now!
October 28, 2010 at 11:10 am
Can you attach a sample file, maybe a test file that exhibits the behavior but doesn't do anything important?
If it *is* an encoding problem and you can determine what encoding...
October 28, 2010 at 10:41 am
I'm not sure what the problem is, but this works fine for me so I don't think the problem is the accents...
declare @table table ( x varchar(255) )
declare @my_value varchar(100)
set...
October 28, 2010 at 7:53 am
You're not specifying the owner/schema for the stored procedure and/or the table you're inserting into? You're trying to insert NULL values into columns that don't allow NULLs? The moon isn't...
August 11, 2010 at 7:04 am
Caveat: I'm not a security expert, so be careful with this...
It's not clear from your response if you are actually doing what folks are suggesting, so just to make sure,...
March 18, 2010 at 7:36 am
In this competative world, the interviewer will pick the person who writes the best code in a reasonable amount of time and, be sure about this, it doesn't take someone...
February 22, 2010 at 8:46 am
e.g. (assuming child table does not have identity, if it does then SET IDENTITY_INSERT there)
SET IDENTITY_INSERT tblMaster ON
INSERT INTO prod.tblMaster SELECT * FROM tblMaster
SET IDENTITY_INSERT tblMaster OFF
INSERT INTO prod.tblChild SELECT...
February 12, 2010 at 7:39 am
Is there any reason that SET IDENTITY_INSERT could not be used here? If it's in the same database (or server, I guess) then if an identity column is the problem,...
February 12, 2010 at 7:32 am
I know, I got the question right. Just being snarky. 😛
January 6, 2010 at 7:29 am
Viewing 15 posts - 136 through 150 (of 251 total)