Forum Replies Created

Viewing 15 posts - 12,481 through 12,495 (of 15,381 total)

  • RE: it work after one loop not working on next cndition

    Is there a question here? And why do you need a loop for this?

  • RE: Creation of sub report in SSRS2005

    Try this one. http://bit.ly/IsUkqa

  • RE: Tried but not able to do it

    http://weblogs.sqlteam.com/jeffs/archive/2008/05/13/question-needed-not-answer.aspx

    For details about posting ddl and sample data see the first link in my signature.

  • RE: I need assistance with inserting records FROM Access TO SQL using Visual Basic

    I have to agree that I don't get the Excel element. It seems like it is adding an extra to an already overly complicated process that just isn't needed. If...

  • RE: sqlserver1

    PLEASE stop posting these same questions over and over.

  • RE: Create Job

    That error pretty much says it all. The link server is unable to authenticate. There are a lot of things that could be causing this. If this worked in the...

  • RE: list of Fields in a table

    bitbucket-25253 (4/10/2012)


    Here is a method, probably not the most efficient but it works for me

    CREATE TABLE #C(Num INT,Nam VARCHAR(5))

    INSERT INTO #c

    SELECT COUNT(Cola),'Cola' FROM #Nepal WHERE UNICODE(Cola) > 127 UNION ALL

    SELECT...

  • RE: list of Fields in a table

    Building off the previously posted data.

    create table #Nepal ( cola nvarchar(10),colb nvarchar(10), colc nchar(10), cold nvarchar(10))

    insert into #Nepal

    select N'????',N'AAA',N'ZZZ',N'PPP' union all

    select N'???????',N'AAA',N'?????',N'PPP' union all

    select N'TTT',N'BBB',N'DDD',N'????????'

    select *

    from #Nepal

    I think something...

  • RE: sql server

    Of course I have no issue with asking basic questions.

    I just tend to get annoyed at the same question over and over. Each time people all saying the same...

  • RE: list of Fields in a table

    Murphy'sLaw (4/10/2012)


    Sean Lange (4/10/2012)


    Seems that the bigger question is what are hoping to do with this information? I have a feeling that you want to see if the data right...

  • RE: sql server

    Lynn Pettis (4/10/2012)


    Sean Lange (4/10/2012)


    Please stop posting the same questions over and over. These are all very basic questions and they continue to have the appearance of either homework or...

  • RE: sql server

    Please stop posting the same questions over and over. These are all very basic questions and they continue to have the appearance of either homework or interview questions.

  • RE: Shifting values to the left

    Just need to add another case statement to make it work...not that this would be the preferred way given so many other solutions though.

    create table #Address

    (

    id int,

    addr1 varchar(25),

    addr2 varchar(25),

    addr3 varchar(25)

    )

    insert...

  • RE: Shifting values to the left

    Yes Mike you are correct. The version that ColdCoffee posted just after mine is almost the same thing as the one I posted. It has the same issue too.

    DECLARE @Example

    TABLE...

  • RE: Shifting values to the left

    And yet another way to skin this cat...

    create table #Address

    (

    id int,

    addr1 varchar(25),

    addr2 varchar(25),

    addr3 varchar(25)

    )

    insert #Address

    select 1, '123', NULL, 'Main St.'

    union all select 2, NULL, NULL, NULL

    union all select 3, NULL,...

Viewing 15 posts - 12,481 through 12,495 (of 15,381 total)