Viewing 15 posts - 91 through 105 (of 440 total)
Are you hosting any website?
April 10, 2009 at 9:54 am
There were somany suggestion to the question :). Which one you are planning to choose!!!
April 10, 2009 at 9:51 am
GSquared (4/9/2009)
SELECT
consultant_key,
fiscal_period_key,
sort_seq,
item_type,
item_desc,
item_id,
reservation_ind,
...
April 10, 2009 at 9:49 am
To trim the spaces on both the sides of the string we need to use LTRIM and RTRIM. Instead of we have one function from SQL Server to do both...
April 10, 2009 at 9:39 am
Hi can u post your SP source code and how are you calling this to get more insight on your process.
April 10, 2009 at 9:37 am
April 10, 2009 at 9:35 am
It looks like there is another thread on the same question:
http://www.sqlservercentral.com/Forums/Topic694194-338-1.aspx
April 10, 2009 at 9:28 am
Normally all this kind of Summing along with the details comes from Reports or Front-End application. If this is the case then it is best to do at those layers...
April 10, 2009 at 9:28 am
Hi
Append the below query:
union all
select null, null, null, null, count(*) from #temp
April 10, 2009 at 9:23 am
Select SocialSecurityNumber, ClearedDate, [Type], DDS, Count(*) As TotalCleared
from #temp
Group by SocialSecurityNumber, ClearedDate, [Type], DDS
Order BY ISNULL( ClearedDate, '31-Dec-2090')
You can have one Union All with the above query to count teh...
April 10, 2009 at 9:11 am
All the best....
This forum will always help to clarify your technical doubts or any concepts related questions.
April 10, 2009 at 4:53 am
Best Practicse is always have list of columns INSERT and SELECT statement to avoid any confusion when you are copying the data.
April 9, 2009 at 8:45 am
Check out the below link
http://searchsqlserver.techtarget.com/tip/1,289483,sid87_gci1063700_mem1,00.html
April 9, 2009 at 8:44 am
You Can even try out with "INSTEAD OF TRIGGER" to avoid anu updates/inserts thru views.
April 9, 2009 at 8:37 am
Vivek (4/9/2009)
hican any one tell me how database level caching can be implemented in sql server.
You can't cache a database..Caching is at the table level.
Check out the below link
April 9, 2009 at 8:32 am
Viewing 15 posts - 91 through 105 (of 440 total)