Viewing 15 posts - 136 through 150 (of 247 total)
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
Where was the choice for "Could not locate entry in sysdatabases for database 'Northwind'."?
January 6, 2010 at 7:07 am
Microsoft software sort-of already does try to link errors to solutions. When an error occurs, look at the Event Viewer. An error or other message (assuming one appears, that is)...
November 11, 2009 at 8:28 am
What platform is your app targeted to? Is it Windows? Windows has a rich (if somewhat convoluted) API for dealing with time, and Windows knows about time zones. If you're...
October 27, 2009 at 7:58 am
Viewing 15 posts - 136 through 150 (of 247 total)