Search the web
Sign In
New User? Sign Up
sqlcon
? 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.

Best of Y! Groups

   Check them out and nominate your group.
Having problems with message search? Fill out this form to ensure your group is one of the first to be migrated to the new message search system.

Messages

  Messages Help
Advanced
Messages 88 - 117 of 6519   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
88
Hi Rajendra, Before answering your question, I would like to know how often do you fire this query. Thanks Murthy Rajendra Prasad <rajendraprasad_t@...>...
vadlamani murthy
vadlamanimurth
Offline Send Email
Apr 1, 2004
6:12 pm
89
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 =...
VISHNAT
Offline Send Email
Apr 1, 2004
8:40 pm
90
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...
Rajendra Prasad
rajendraprasad_t@...
Send Email
Apr 2, 2004
9:25 am
91
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...
maverick_balesh
Offline Send Email
Apr 2, 2004
9:53 am
92
I guess MSDTC Service on the box is not started. Start the service and try again. ... SELECT ... in...
RamKishore
ramki120
Offline Send Email
Apr 2, 2004
9:56 am
93
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...
VISHNAT
Offline Send Email
Apr 2, 2004
12:46 pm
94
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...
Anjana Ram
anjana_r21
Offline Send Email
Apr 3, 2004
7:12 am
95
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...
vadlamani murthy
vadlamanimurth
Offline Send Email
Apr 5, 2004
7:34 am
96
Hi All, While i am running a sql Procedure i am getting the following error. Error: [Microsoft][ODBC SQL Server Driver][DBNETLIB]ConnectionRead ...
Anand
anandv123
Offline Send Email
Apr 5, 2004
7:54 am
97
Hi, While i am running a sql Procedure i am getting the following error. Error: [Microsoft][ODBC SQL Server Driver][DBNETLIB]ConnectionRead (WrapperRead()). ...
Anand Vijayaragavan
anandv123
Offline Send Email
Apr 5, 2004
7:54 am
98
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...
Achintya Anant Bakre ...
bachintya
Offline Send Email
Apr 5, 2004
9:00 am
99
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...
bhagya.joshi@...
bhagyashree
Offline Send Email
Apr 5, 2004
10:03 am
100
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...
Anjana Ram
anjana_r21
Offline Send Email
Apr 5, 2004
12:19 pm
101
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...
Anand
anandv123
Offline Send Email
Apr 5, 2004
2:11 pm
102
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...
Anand Vijayaragavan
anandv123
Offline Send Email
Apr 5, 2004
2:23 pm
103
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....
Anjana Ram
anjana_r21
Offline Send Email
Apr 5, 2004
3:33 pm
104
Hi, Pls anybody tell me how can i become an MVP __________________________________ Do you Yahoo!? Yahoo! SiteBuilder - Free web site building tool. Try it! ...
aneesh
aneeshattingal
Offline Send Email
Apr 5, 2004
5:37 pm
105
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...
Anjana Ram
anjana_r21
Offline Send Email
Apr 5, 2004
6:14 pm
106
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...
Rajendra Prasad
rajendraprasad_t@...
Send Email
Apr 6, 2004
10:45 am
107
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...
Mohammed Zaheer Khan ...
mobik
Offline Send Email
Apr 6, 2004
11:05 am
108
SQL will use xp_msver extended stored proc to get info from OS. ________________________________ From: Mohammed Zaheer Khan (Satyam Computer Services) ...
Ram Kishore CH (Wipro...
ramki120
Offline Send Email
Apr 6, 2004
11:29 am
109
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...
Anjana Ram
anjana_r21
Offline Send Email
Apr 6, 2004
1:43 pm
110
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...
veer wangoo
vwangoo
Offline Send Email
Apr 7, 2004
2:16 am
111
This is simple and Xlent way to stop locking.... ... ===== VEER JI WANGOO DBA - Support Microsoft BUIT (HYD) INDIA MOBILE:-+91-41-32380755 ...
veer wangoo
vwangoo
Offline Send Email
Apr 7, 2004
2:19 am
112
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...
veer wangoo
vwangoo
Offline Send Email
Apr 7, 2004
5:03 am
113
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....
Subramanya Veera (Wip...
vrsubbu24
Offline Send Email
Apr 7, 2004
9:14 am
114
The problem is that all four columns allow NULL values. The COALESCE function returns the first nonnull expression. The following COALESCE statement produces...
meetrag
Offline Send Email
Apr 7, 2004
9:34 am
115
To Avoid SELECT emp_id,CAST(COALESCE(salary, hourly_wage * 40 * 52 , commission * num_sales) AS money) AS 'Total Salary'...
meetrag
Offline Send Email
Apr 7, 2004
10:16 am
116
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...
Anjana Ram
anjana_r21
Offline Send Email
Apr 7, 2004
12:37 pm
117
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...
Rajendra Prasad
rajendraprasad_t@...
Send Email
Apr 8, 2004
4:16 am
Messages 88 - 117 of 6519   Oldest  |  < Older  |  Newer >  |  Newest
Advanced
Add to My Yahoo!      XML What's This?

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