Viewing 15 posts - 196 through 210 (of 237 total)
I have also just realised I pasted this in the wrong forum (should be in 2008)
August 15, 2013 at 7:59 am
s_osborne2 (8/14/2013)
I avoid that wizard where possible if i'm honest. Glad you got the data inserted! 🙂
I will now be avoiding the wizard too!
Cheers for the help
August 14, 2013 at 8:54 am
I have just saved the file into a CSV file and ran a bulk insert and it went straight in.
I wish I knew why the export wizard didn't work though!
August 14, 2013 at 8:51 am
s_osborne2 (8/14/2013)
This is really strange. I've just created an SSIS package manually (i.e. not through the import wizard). If i say that the excel source has column headers in the...
August 14, 2013 at 8:42 am
homebrew01 (8/14/2013)
What Data Type does the wizard think that the column is ? I think it should be string (DT_STR) if you are expecting non-numeric data.
Thats correct, its...
August 14, 2013 at 8:29 am
Koen Verbeeck (8/14/2013)
Are you trying to put empty values (=NULL) into a non-nullable column?
No 🙂 there are no Nulls to insert.. it just doesnt like it when there is a...
August 14, 2013 at 8:02 am
CREATE TABLE [dbo].[SystemProducts](
[ID] [int] IDENTITY(1,1) NOT NULL,
[SystemID] [int] NOT NULL,
[ProductID] [int] NOT NULL,
[Code] [varchar](50) NOT NULL )
I have also uploaded a few rows in a file..
August 14, 2013 at 8:01 am
The column status returned was: "The value violated the integrity constraints for the column.".
(SQL Server Import and Export Wizard)
is the error message.
When I open it up in Visio...
August 14, 2013 at 7:53 am
You can, but best practices state your shouldn't use the default port
August 14, 2013 at 7:06 am
kanchankalra85 (8/13/2013)
Can someone please explain what is the purpose of execute permission? What is the drawback of granting execute? Does it cause lot of performance overhead or does it...
August 13, 2013 at 7:57 am
If it is an application account, you may have a config file with the password stored somewhere.
If not, reset 🙂
August 12, 2013 at 9:15 am
If you come accross any crushed ice making solution, or even cubed ice making solution - let me know
August 8, 2013 at 10:16 am
santhosh411 (8/8/2013)
Is there any major difference b/w while installing the SQL 2008R2 from SQL 205
Give it a try 🙂
All the principles are the same but the screens look different. The...
August 8, 2013 at 9:47 am
Back again! I changed step 2 to use the above and it worked fine.
Step 3 is proving more difficult..
select @backupcommand = ''Backup database '+ dbo.quotestring(@DatabaseName) + ' to...
August 8, 2013 at 9:34 am
Erland Sommarskog (8/8/2013)
SQLSteve (8/8/2013)
Do I just set it as above? I get an error saying it cant find dbo.quotestring.
So did you read my post to the end and tried the...
August 8, 2013 at 6:50 am
Viewing 15 posts - 196 through 210 (of 237 total)