Forum Replies Created

Viewing 15 posts - 15,121 through 15,135 (of 15,381 total)

  • RE: filtering result

    check out "distinct" keyword. Another option would be using the Group By clause.

  • RE: Database / Table Permissions

    It is of course possible. The mechanism to control this is user permissions. You can setup a new database user, setup whatever permissions you want and then use that user...

  • RE: SELECT IF greater than within specified period

    None of your insert statements will work. They all have the datatypes in the middle of them.

    INSERT INTO [dbo].[tblResources]

    ([CompanyName])

    VALUES

    ('Research Opinions', varchar(50))

    Also, I am totally unclear on what you are trying...

  • RE: SELECT IF greater than within specified period

    There are plenty of people on here willing and able to help you. However, you need to help us help you. Table create statements, test data and desired output. Would...

  • RE: Computed column help, or another direction?

    CELKO (11/19/2010)


    ...The un-issued serial numbers will have NULLs in those columns...

    Wow Celko, I am surprised that you of all people would suggest to use NULL like this. In your proposed...

  • RE: VB.Net or Not

    It really boils down mostly to your preference. Neither of them is really better than the other. They compile to the same CLR readable bits. I have disliked the way...

  • RE: Learn cross tab query

    That was the article I was thinking of but misplaced the link. thanks Wayne.

  • RE: help needed

    The simple piece I posted should work fine for that format too. Simple, clean, fast. 🙂

  • RE: help needed

    Lowell, how right you are. If the format is like the OP with no spaces we could replace ,N' with ,' and then get the right of that result like...

  • RE: help needed

    You could use the replace function to remove N' and replace it with '

  • RE: Implicit conversion error

    What is the error?

  • RE: Learn cross tab query

    There are tons of examples all over this site. Just type "cross tab" in the search box at the top and you will have more examples than you can dig...

  • RE: SSIS Execute Package Task

    My thinking was that you should be able to provide a password and the called package would just ignore it. This is the only way it made sense to me....

  • RE: SELECT INTO with a Temp Table

    Great question. Keep them coming!!

  • RE: The DBA Disconnect

    Security is one of those things that can so easily get cut. In planning meetings the decision is made to reduce the budget for security because "we have not had...

Viewing 15 posts - 15,121 through 15,135 (of 15,381 total)