Viewing 15 posts - 1 through 15 (of 17 total)
At my last job my dev team supported a Financial LOB VB5 application that used a SQL Server 6.5 database, and ran on and XP Pro machine. We had to...
January 23, 2017 at 2:44 pm
I always wear business casual at work. Jeans just don't do it for me in the work place. Call me old school, but when I am at home...
January 9, 2009 at 10:10 am
Well, I cannot tell you what's different but I just tried this:
INSERT INTO [DEV001\SQL2005DEV].myDatabase.dbo.myTable
and it worked. "dbo" has always been present so that is not a change.
December 4, 2008 at 10:49 am
SELECT* from DEV001\SQL2005DEV.myDatabase.dbo.myTable returns:
Msg 102, Level 15, State 1, Line 1
Incorrect syntax near '\'.
December 4, 2008 at 10:45 am
Yes, I have run the insert on it's own without the server name, just the database name, and it works correctly.
December 4, 2008 at 10:38 am
Yes, it's linked
December 4, 2008 at 10:37 am
Same her, I have to make all my fields varchar to get the bulk insert to work. Otherwise I get a type mismatch error too. I would prefer to...
November 13, 2008 at 10:56 am
That helps. It's one of those things I will need to 'see' work to 'get it'.
Thanks for the feedback.
November 13, 2008 at 9:47 am
I think I am missing something basic here jcrawf02.
How do I iterate over the temp table to retrieve the temp table id value? In .NET code i...
November 13, 2008 at 9:11 am
Yup, db admin is setting up linked servers. What I need to figure out is how to write the UPDATE statement in the stored procedure....update from the temp table...
November 13, 2008 at 8:43 am
One of the fields in the .CSV file that is BULK INSERTED to a temp table stores a key, call it "theID" to a lookup table where I can select...
November 13, 2008 at 8:22 am
"since it appears the databases exist on the same server, you could do this:"
They do not, they exist on 3 different servers.
Each row in the temp table will...
November 12, 2008 at 9:39 am
So my next challenge is this. The sql table that gets updated in the above UPDATE exists in 3 different databases. The temp table stores an id value...
November 12, 2008 at 7:29 am
As a developer I only bring back the fields I want/need.
I can see your colleagues point though if they are doing some kind of code generation where classes/data...
November 11, 2008 at 12:48 pm
Viewing 15 posts - 1 through 15 (of 17 total)