Viewing 15 posts - 5,941 through 5,955 (of 15,381 total)
hlsc1983 (1/15/2014)
This is what i have come up with so far. please review it and give necessary input.thanks,.
That looks pretty decent. I would suggest that you shouldn't store the number...
January 15, 2014 at 10:33 am
Rod at work (1/15/2014)
I'm concerned because I know that NVARCHAR allows for keeping for formatting information, like underline, bold and italic.
Wha????
It does not store formatting. It allows for storing...
January 15, 2014 at 9:57 am
Grant Fritchey (1/14/2014)
Sean Lange (1/14/2014)
Yesterday my supervisor sent me an email regarding a view...
January 15, 2014 at 8:18 am
Have you investigated parameter sniffing? The symptoms you describe sound like that might be the issue.
http://sqlinthewild.co.za/index.php/2007/11/27/parameter-sniffing/%5B/url%5D
January 14, 2014 at 1:15 pm
Skuldouggery (1/14/2014)
January 14, 2014 at 1:13 pm
Skuldouggery (1/14/2014)
January 14, 2014 at 12:25 pm
j-1064772 (1/14/2014)
As I wrote before:
[font="Courier New"]WHERE NOT (ProductID = 1 OR ProductID = 2 OR ProductID =...
January 14, 2014 at 12:12 pm
j-1064772 (1/14/2014)
I am however still trying to understand why the following occurs:[/font]
[font="Comic...
January 14, 2014 at 9:54 am
S_Kumar_S (1/14/2014)
I have a resultset returned from a select statement :
Name FirstNamePhone
Test1-LTest1-FGermany
Test2-L Test2-FGermany
I want to convert it like :
SELECT 'Test1-L' Name ...
January 14, 2014 at 9:35 am
Steve Jones - SSC Editor (1/14/2014)
Sean Lange (1/14/2014)
Goes to show that you should leave...
January 14, 2014 at 9:05 am
sqlnaive (1/14/2014)
create table #temp(Col1 varchar(20))
declare @p nvarchar(max), tabname varchar(255)
begin
select @p...
January 14, 2014 at 7:55 am
Take a look at this article. http://www.sqlservercentral.com/articles/T-SQL/68467/%5B/url%5D
It explains how to use the "quirky update" for running totals. Make sure you pay attention to the details as there are some extremely...
January 14, 2014 at 7:52 am
I suspect you want to count the children plus the children's children etc? This is a hierarchy and can be solved using a recursive cte. You can either use your...
January 14, 2014 at 7:47 am
What you have here is a running total problem. This is reasonably easy to solve using a "quirky update". You can read about them here. http://www.sqlservercentral.com/articles/T-SQL/68467/%5B/url%5D
Please make sure you very...
January 14, 2014 at 7:39 am
Viewing 15 posts - 5,941 through 5,955 (of 15,381 total)