Forum Replies Created

Viewing 15 posts - 61 through 75 (of 96 total)

  • RE: convert crystal to SQL

    The qeustion was how can i convert the code in SQL (Expression). When you read the expression its says when event_type is i then + number zo i + 00000..

    Im...

  • RE: Put 4 tables in 1 table.. HOW to do that?

    John Mitchell-245523 (8/13/2013)


    Either:

    SET IDENTITY INSERT ON

    INSERT INTO WhatsUp_Assyst_replicatie_All.dbo.device

    (nDeviceID, nDefaultNetworkInterfaceID)

    SELECT nDeviceID, nDefaultNetworkInterfaceID

    FROM WhatsUp_Assyst_replicatie.dbo.device

    SET IDENTITY INSERT OFF

    or:

    INSERT INTO WhatsUp_Assyst_replicatie_All.dbo.device

    (nDefaultNetworkInterfaceID)

    SELECT nDefaultNetworkInterfaceID

    FROM WhatsUp_Assyst_replicatie.dbo.device

    I would recommend the second method, since you are likely to get...

  • RE: Put 4 tables in 1 table.. HOW to do that?

    When i start with a new database and begin with the first database to put into the device table it works...

    When i going to databse 2 its saying this again;

    Msg...

  • RE: Put 4 tables in 1 table.. HOW to do that?

    I want this databases with the table device;

    WhatsUp_Assyst_replicatie

    WhatsUp_Assyst_replicatie2

    WhatsUp_Assyst_replicatie3

    WhatsUp_Assyst_replicatie4

    in the database;

    WhatsUp_Assyst_replicatie_All

    :::HERE JOHN:::

    USE [WhatsUp_Assyst_replicatie_All]

    GO

    /****** Object: Table [dbo].[device] Script Date: 13-8-2013 13:37:13 ******/

    SET ANSI_NULLS ON

    GO

    SET QUOTED_IDENTIFIER ON

    GO

    CREATE TABLE...

  • RE: Put 4 tables in 1 table.. HOW to do that?

    How can i get the DDL file? Im not so favorite of shortcuts. Step by Step

  • RE: Put 4 tables in 1 table.. HOW to do that?

    What do you mean can you do it with a example?!

  • RE: Put 4 tables in 1 table.. HOW to do that?

    I get the following error:

    Msg 8101, Level 16, State 1, Line 2

    An explicit value for the identity column in table 'WhatsUp_Assyst_replicatie_All.dbo.device' can only be specified when a column list is...

  • RE: convert crystal to SQL

    What I want. In the picture you see the 2 column 1 with a letter and other with number. I want to combine those to so if it is i...

  • RE: convert crystal to SQL

    pgt892 (8/7/2013)


    Below are instructions for handling your concern in SSRS, the case expression should handle it in SQL.

    I set up a simple data set to make this work, containing the...

  • RE: convert crystal to SQL

    Still same.

  • RE: convert crystal to SQL

    I just trying that but is solve only the 2 and the third telling that the syntax is incorrect.

  • RE: convert crystal to SQL

    Koen Verbeeck (8/6/2013)


    Try with a single =.

    Double == is SSIS expression language :blush:

    if i do that i get a syntax error.

  • RE: convert crystal to SQL

    Its say now this.

    Msg 156, Level 15, State 1, Line 1

    Incorrect syntax near the keyword 'case'.

    I have change a little bit (select and from statement) And the '0000' (in...

  • RE: convert crystal to SQL

    In the example you see that i must use the = 🙂 now im use it but.. I get a syntax error..

    See picture.

  • RE: convert crystal to SQL

    It is in the expression box.

    Look picture

Viewing 15 posts - 61 through 75 (of 96 total)