Forum Replies Created

Viewing 15 posts - 196 through 210 (of 237 total)

  • RE: Sp to create SQL job

    I have also just realised I pasted this in the wrong forum (should be in 2008)

  • RE: Import\export wizard

    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

  • RE: Import\export wizard

    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!

  • RE: Import\export wizard

    s_osborne2 (8/14/2013)


    Hi,

    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...

  • RE: Import\export wizard

    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...

  • RE: Import\export wizard

    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...

  • RE: Import\export wizard

    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..

  • RE: Import\export wizard

    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...

  • RE: Can we assign port 1433 to a named instance

    You can, but best practices state your shouldn't use the default port

  • RE: Execute permission

    kanchankalra85 (8/13/2013)


    Hi ,

    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...

  • RE: password

    If it is an application account, you may have a config file with the password stored somewhere.

    If not, reset 🙂

  • RE: cook book

    If you come accross any crushed ice making solution, or even cubed ice making solution - let me know

  • RE: difference between sql2005 and sql2008 installation

    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...

  • RE: Creating a stored procedure inside a stored procedure.

    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...

  • RE: Creating a stored procedure inside a stored procedure.

    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...

Viewing 15 posts - 196 through 210 (of 237 total)