Viewing 15 posts - 15,121 through 15,135 (of 15,381 total)
check out "distinct" keyword. Another option would be using the Group By clause.
December 13, 2010 at 9:16 am
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...
December 13, 2010 at 9:11 am
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...
December 13, 2010 at 9:03 am
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...
December 10, 2010 at 2:17 pm
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...
November 19, 2010 at 1:34 pm
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...
November 19, 2010 at 1:27 pm
That was the article I was thinking of but misplaced the link. thanks Wayne.
November 19, 2010 at 10:08 am
The simple piece I posted should work fine for that format too. Simple, clean, fast. 🙂
November 19, 2010 at 9:14 am
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...
November 19, 2010 at 8:29 am
You could use the replace function to remove N' and replace it with '
November 19, 2010 at 7:46 am
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...
November 19, 2010 at 7:32 am
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....
November 19, 2010 at 7:29 am
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...
November 18, 2010 at 7:20 am
Viewing 15 posts - 15,121 through 15,135 (of 15,381 total)