Viewing 15 posts - 6,691 through 6,705 (of 15,381 total)
Well I guess I didn't quite get the requirements. Chock that up to a lack of details. This thread could serve as a good example of why it is so...
September 27, 2013 at 7:47 am
Grant Fritchey (9/27/2013)
hisakimatama (9/26/2013)
SQLRNNR (9/26/2013)
hisakimatama (9/26/2013)
Working with the company's vendor software, and one of the reports is coming across super-slow, about 10...
September 27, 2013 at 7:40 am
tskelley (9/26/2013)
September 26, 2013 at 3:20 pm
Luis is absolutely correct about datatypes here. You are using sql 2008 so you have the time datatype. This would be the appropriate time (pun intended) to use that datatype.
CREATE...
September 26, 2013 at 2:09 pm
mike murray-229384 (9/26/2013)
dwain.c (9/24/2013)
I'm not sure by your post whether you're looking to see an expanded hierarchy or...
September 26, 2013 at 1:58 pm
Thanks to hunchback for the ddl and data. Here is another way to do the same thing.
select Rate
from @T
cross apply (select count(*) as RowsCount from @t where rate = @Rate)...
September 26, 2013 at 1:48 pm
Lynn Pettis (9/26/2013)
I was notified this evening that my position state side has been cut as...
September 26, 2013 at 12:21 pm
SQLKnitter (9/26/2013)
Also, I apologize for posting this in the wrong (2005) forum. Is there a way I can move it to 2008 R2?
No biggie. There is no way for us...
September 26, 2013 at 11:57 am
SQLKnitter (9/26/2013)
September 26, 2013 at 11:57 am
SQLKnitter (9/26/2013)
September 26, 2013 at 10:48 am
You have been around here long enough to know that posting some consumable ddl and data is far more likely to get responses.
That being said why is only 3 and...
September 26, 2013 at 7:21 am
Bhuvnesh (9/26/2013)
Sean Lange (9/25/2013)
IM.ItemCode BETWEEN '999999' AND 'CL00000'AND IM.ItemCode NOT IN ('001920', '001921', 'CL01926', 'CN00229', 'CN00230')
[/code]
Sean,
Talking about the selection of "NOT IN" over "Between" i have experienced...
September 26, 2013 at 7:17 am
When using the send results to file it is limited to the same settings as output to text. At least it was in 2005. I just tried and it seems...
September 25, 2013 at 2:08 pm
DKlein (9/25/2013)
Can I alter an existing int column to an identity in a table that is already published in transactional replication?Thanks,
DK
Technically speaking you can't change the identity property of an...
September 25, 2013 at 1:45 pm
ROFL. I never realized that option was there either. I have always just completely ignored the time of the post. Apparently I was set to central Europe. That is bit...
September 25, 2013 at 1:42 pm
Viewing 15 posts - 6,691 through 6,705 (of 15,381 total)