Forum Replies Created

Viewing 15 posts - 31 through 45 (of 80 total)

  • RE: How to get results from a table dynamically

    Simple example

    The code below is what you would use to test your results

    DECLARE @clientage varchar(10)

    set @clientage = '26'

    select name, age, gender

    from customer

    where age = @clientage

    This is how it...

    __________________________________________________________________________________
    Steve J
    Jnr Developer
    BSc(Hon)

  • RE: Store Procedure not returning any data when connected to SSRS

    Thanks for all the replies much appreciated

    @ weitzera your spot on I've changed the other parameters to null and its finally returned data in the 'Query Designer' window, thanks for...

    __________________________________________________________________________________
    Steve J
    Jnr Developer
    BSc(Hon)

  • RE: Store Procedure not returning any data when connected to SSRS

    Many thanks for your reply

    @Neal I've checked through the parameters in SSRS and that doesnt seem to be the problem. I've attached a word document of the steps that...

    __________________________________________________________________________________
    Steve J
    Jnr Developer
    BSc(Hon)

  • RE: Error Message - There is already an object named 'SystemDateTable' in the database

    Thanks for your reply Lowell and kvishu83

    @Lowell its just a portion of the SP I've created. You are completely right with your advise it has solved the problem:-) i don't...

    __________________________________________________________________________________
    Steve J
    Jnr Developer
    BSc(Hon)

  • RE: DateAdd script not working

    @j-2 Livingston SQL many thanks for the script that is exactly what i needed.

    @ Ninja's_RGR'us want I wanted is to subtract 1 month from the capture date which is...

    __________________________________________________________________________________
    Steve J
    Jnr Developer
    BSc(Hon)

  • RE: Insert data from a text file document into a SQL table

    Hey SQL Ninja thanks for are help and all who replied

    I used the following which has worked perfectly

    BULK INSERT Test.dbo.CSVTest

    FROM 'C:\csvtest.txt'

    WITH

    (

    ...

    __________________________________________________________________________________
    Steve J
    Jnr Developer
    BSc(Hon)

  • RE: Insert data from a text file document into a SQL table

    I'm not too sure what you mean by your second point, are you saying i should remove that line

    BULK

    INSERT Test1

    FROM 'c:\csvtest.txt'

    WITH

    (

    FIELDTERMINATOR = ','

    )

    GO

    __________________________________________________________________________________
    Steve J
    Jnr Developer
    BSc(Hon)

  • RE: Insert data from a text file document into a SQL table

    Thanks i tried to do a dummy bulk insert but i cant seem to get it to work. Can you have a look at let me know where I'm going...

    __________________________________________________________________________________
    Steve J
    Jnr Developer
    BSc(Hon)

  • RE: Insert data from a text file document into a SQL table

    I'm not to sure how you go about using bulk insert or OPENROWSET. Do you have any info for a beginner on this??

    __________________________________________________________________________________
    Steve J
    Jnr Developer
    BSc(Hon)

  • RE: Cant connect to my local server after installing SQL Server 2005 Developer Edition

    I've got services running shown in the imagine that i've attached.

    I've completely uninstall and reinstalled SQL Server now, i'm in the process of installing SQL service pack 3

    i'll let...

    __________________________________________________________________________________
    Steve J
    Jnr Developer
    BSc(Hon)

  • RE: Chart Type Labels

    Never came across a way to turn on labels but i would suggest clicking on the chart type such Line or bar then placing your cursor over the image again....

    __________________________________________________________________________________
    Steve J
    Jnr Developer
    BSc(Hon)

  • RE: Tablix Page Break

    It could be two reasons

    1) A config issue

    2) You lost connection to your server so when you tried to perform an action the error message appeared - 401.1:...

    __________________________________________________________________________________
    Steve J
    Jnr Developer
    BSc(Hon)

  • RE: Cant connect to my local server after installing SQL Server 2005 Developer Edition

    Thanks for your reply Jayanth_Kurup

    At the moment there is no error message because there is no instance for me to connect

    I've attached an image of what i'm viewing

    __________________________________________________________________________________
    Steve J
    Jnr Developer
    BSc(Hon)

  • RE: Get rid of error message 'An item with the same key has already been added'.

    Your right didn't spot that one works perfectly thanks

    __________________________________________________________________________________
    Steve J
    Jnr Developer
    BSc(Hon)

  • RE: Get rid of error message 'An item with the same key has already been added'.

    I've done the google search and i understand that SSRS only uses the column names as a key not the table + column names. I've changed it to the following...

    __________________________________________________________________________________
    Steve J
    Jnr Developer
    BSc(Hon)

Viewing 15 posts - 31 through 45 (of 80 total)