Viewing 14 posts - 1 through 14 (of 14 total)
So, I am a bit confused.
My data is putting out a lot of decimal places when I really would like to have this in money format. My table is showing...
September 10, 2010 at 12:31 pm
Chris Morris-439714 (9/10/2010)
You mean like this?Which I reckon reads better like this:
I know. I'm sorry. I apologize This is the second time I have ever done SQL coding so I'm...
September 10, 2010 at 9:22 am
That's what thought I did. I double checked and it went through easily. Updated the 261 records. Awesome!
Thanks Wayne and Craig for your help and patience. This is my first...
September 2, 2010 at 2:37 pm
Craig Farrell (9/2/2010)
Near the end:WHERE TestTable.ID IS NULL;
Should be:
WHERE survey.ID IS NULL;
I bet I've messed up the code then because I changed a lot of the survey's to TestTable and...
September 2, 2010 at 2:29 pm
Craig Farrell (9/2/2010)
FROM dbo.TestTable survey
JOIN dbo.[Sheet1$] xl
...
September 2, 2010 at 2:20 pm
Line 15 had an extra comma so that resolved Line 16's error.
Now I'm getting a Msg 4104 on line 27, "The multi-part identifier "TestTable.ID" could not be bound." This error...
September 2, 2010 at 2:17 pm
I've resolved Line 32.
I still don't see what is wrong with Line 16???
September 2, 2010 at 2:08 pm
WayneS (9/2/2010)
Looks like you just have to verify everything is fine, then you're ready to go!
Except that I receiving some errors.
On Line 16, which is FROM dbo.TestTable
it...
September 2, 2010 at 1:50 pm
Awesome, I have the test table set up. I've updated the code and receive this error. I'm sure it is my fault but I could use some guidance on resolving...
September 2, 2010 at 1:00 pm
There are over 6800 records in the database, will this code cause any problems with the other records?
How can I copy this table and test on it?
September 2, 2010 at 12:22 pm
Thank you for your patience Wayne.
Primary Table, meaning this is where we want the imported data to go.
CREATE TABLE [dbo].[2010 Master Survey Results](
[ID] [int] IDENTITY(1,1) NOT NULL,
[BENCHMARK] [float] NULL,
[YOUR_STATES_JOB_TITLE] [nvarchar](255)...
September 2, 2010 at 10:56 am
WayneS (9/2/2010)
mfowler12 (9/2/2010)
So, how do I link the tables so that the data can...
September 2, 2010 at 10:34 am
I was able to import the data by using the DTSWizard. It was on a different drive.
So, how do I link the tables so that the data can be transferred/updated?
I'm...
September 2, 2010 at 9:32 am
WayneS (9/1/2010)
September 2, 2010 at 9:05 am
Viewing 14 posts - 1 through 14 (of 14 total)