Skip to search.
sqlcon

Group Information

  • Members: 779
  • Category: SQL
  • Founded: Feb 23, 2004
  • Language: English
? Already a member? Sign in to Yahoo!

Yahoo! Groups Tips

Did you know...
Hear how Yahoo! Groups has changed the lives of others. Take me there.

Messages

  Messages Help
Advanced
Messages 88 - 117 of 6711   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
88 vadlamani murthy
vadlamanimurth Offline Send Email
Apr 1, 2004
6:12 pm
Hi Rajendra, Before answering your question, I would like to know how often do you fire this query. Thanks Murthy Rajendra Prasad <rajendraprasad_t@...>...
89 VISHNAT Offline Send Email Apr 1, 2004
8:40 pm
How to concatenate all values of column to a row ? USE pubs GO DECLARE @title_ids varchar(150), @delimiter char SET @delimiter = ',' SELECT @title_ids =...
90 Rajendra Prasad
rajendraprasad_t@... Send Email
Apr 2, 2004
9:25 am
Hi Muthry, Thanks for your reply. The Query gets fired in a job which populates the tables from flat files. I need to link up the records to their related...
91 maverick_balesh Offline Send Email Apr 2, 2004
9:53 am
Hi all, I got following error in a box when executed a distributed query testprocs is a Store procedure which contain a simple SELECT QUERY. When I execute...
92 RamKishore
ramki120 Offline Send Email
Apr 2, 2004
9:56 am
I guess MSDTC Service on the box is not started. Start the service and try again. ... SELECT ... in...
93 VISHNAT Offline Send Email Apr 2, 2004
12:46 pm
Hi Baleshwar are you using a loopback Link server? From Bol Loopback linked servers cannot be used in a distributed transaction. Attempting a distributed query...
94 Anjana Ram
anjana_r21 Offline Send Email
Apr 3, 2004
7:12 am
Finding the number of days in the current month: SELECT DAY(DATEADD(d, -DAY(DATEADD(m,1,getDate())),DATEADD(m,1,getDate()))) This query can be altered to find...
95 vadlamani murthy
vadlamanimurth Offline Send Email
Apr 5, 2004
7:34 am
Hi Rajendra, This we cann't achieve at one go. You have to make use of all the options that you have and then you have to apply the best which fits. Please...
96 Anand
anandv123 Offline Send Email
Apr 5, 2004
7:54 am
Hi All, While i am running a sql Procedure i am getting the following error. Error: [Microsoft][ODBC SQL Server Driver][DBNETLIB]ConnectionRead ...
97 Anand Vijayaragavan
anandv123 Offline Send Email
Apr 5, 2004
7:54 am
Hi, While i am running a sql Procedure i am getting the following error. Error: [Microsoft][ODBC SQL Server Driver][DBNETLIB]ConnectionRead (WrapperRead()). ...
98 Achintya Anant Bakre ...
bachintya Offline Send Email
Apr 5, 2004
9:00 am
Strange behavior of views.. Some of you must know this already.. just incase if you have never come across.. Use pubs Go create table rl_t1 (id int) go insert...
99 bhagya.joshi@...
bhagyashree Offline Send Email
Apr 5, 2004
10:03 am
That is expected behavior, because view is an object with structure defined during creation (precompiled) alter the view and try again that will display two...
100 Anjana Ram
anjana_r21 Offline Send Email
Apr 5, 2004
12:19 pm
Hi Anand, Is this error occuring only when u run that particular stored procedure? If yes, can u tell us what r doing with that storedproc. Also, try...
101 Anand
anandv123 Offline Send Email
Apr 5, 2004
2:11 pm
Hi Anjana, Thanks for your timely help. This error occurs when run this procedure and another scrub which uses cursor to process more than 20000 records. These...
102 Anand Vijayaragavan
anandv123 Offline Send Email
Apr 5, 2004
2:23 pm
Hi Anjana, Thanks for your help and quick response. This error occurs when i run this procedure and another one scrub. That scrub uses cursor to process the...
103 Anjana Ram
anjana_r21 Offline Send Email
Apr 5, 2004
3:33 pm
Hi Anand, Actually the problem is MDAC 2.8. There is a patch available for this. This problem occurs when SQLserver used Named Pipe library rather then tcp/ip....
104 aneesh
aneeshattingal Offline Send Email
Apr 5, 2004
5:37 pm
Hi, Pls anybody tell me how can i become an MVP __________________________________ Do you Yahoo!? Yahoo! SiteBuilder - Free web site building tool. Try it! ...
105 Anjana Ram
anjana_r21 Offline Send Email
Apr 5, 2004
6:14 pm
Hi, Our MVPs here would defenetely be answering such FAQs and soon we would have them in the FAQ section of Sqlcon. But till then you can check this article...
106 Rajendra Prasad
rajendraprasad_t@... Send Email
Apr 6, 2004
10:45 am
Hi All, I am facing a problem in writing an SQL Server code. I want to have an XML File as error log. what is the best way of writing the same, with out using...
107 Mohammed Zaheer Khan ...
mobik Offline Send Email
Apr 6, 2004
11:05 am
Dear All, If I execute 'SELECT @@Version', I'll get service pack version number, but where does SQL Server stores this number? Also, where can I find which...
108 Ram Kishore CH (Wipro...
ramki120 Offline Send Email
Apr 6, 2004
11:29 am
SQL will use xp_msver extended stored proc to get info from OS. ________________________________ From: Mohammed Zaheer Khan (Satyam Computer Services) ...
109 Anjana Ram
anjana_r21 Offline Send Email
Apr 6, 2004
1:43 pm
One way to prevent deadlocks. One way of preventing deadlocks is to try to access the resources in all the transactions in the same order. For example: See the...
110 veer wangoo
vwangoo Offline Send Email
Apr 7, 2004
2:16 am
Hi, There are different ways to do the same..I will mail you a nice documentation on same by tonight.... If anyone has any good ideas about it..please reply as...
111 veer wangoo
vwangoo Offline Send Email
Apr 7, 2004
2:19 am
This is simple and Xlent way to stop locking.... ... ===== VEER JI WANGOO DBA - Support Microsoft BUIT (HYD) INDIA MOBILE:-+91-41-32380755 ...
112 veer wangoo
vwangoo Offline Send Email
Apr 7, 2004
5:03 am
Ue the following script :- SET NOCOUNT ON GO USE master IF EXISTS (SELECT TABLE_NAME FROM INFORMATION_SCHEMA.TABLES WHERE TABLE_NAME = 'wages') DROP TABLE...
113 Subramanya Veera (Wip...
vrsubbu24 Offline Send Email
Apr 7, 2004
9:14 am
I don't see anything wrong in that. I have seen the same example in SQL Transaction Help for Coalesce. The expected result for 5th row is 104000 i.e. 50*40*52....
114 meetrag Offline Send Email Apr 7, 2004
9:34 am
The problem is that all four columns allow NULL values. The COALESCE function returns the first nonnull expression. The following COALESCE statement produces...
115 meetrag Offline Send Email Apr 7, 2004
10:16 am
To Avoid SELECT emp_id,CAST(COALESCE(salary, hourly_wage * 40 * 52 , commission * num_sales) AS money) AS 'Total Salary'...
116 Anjana Ram
anjana_r21 Offline Send Email
Apr 7, 2004
12:37 pm
Usage of operators The speed of the query also depends on the operators used in the where clause. Key operators used in the WHERE clause, ordered by their...
117 Rajendra Prasad
rajendraprasad_t@... Send Email
Apr 8, 2004
4:16 am
Hi Murthy, Thanks a lot. I would work on those lines and get back to u. Pls provide me your inputs also. Regards, Rajendra. ... options that you have and then...
Messages 88 - 117 of 6711   Oldest  |  < Older  |  Newer >  |  Newest
Add to My Yahoo!      XML What's This?

Copyright © 2010 Yahoo! Inc. All rights reserved.
Privacy Policy - Terms of Service - Guidelines NEW - Help