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...
Message search is now enhanced, find messages faster. Take it for a spin.

Messages

  Messages Help
Advanced
Messages 2064 - 2093 of 6711   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
2064 prashanth pogu
prashanth_pogu Offline Send Email
Dec 1, 2005
9:47 am
Hi all.. i m having a problem in understanding select query select em,empname from empdetails into #TempTB where 1>2 i'm unable to understand the condition in...
2065 kishore
kvkishore79 Offline Send Email
Dec 1, 2005
9:59 am
Dear Prashant, I think this query is used to create a temp table same as table empdetails without any data. Regards, Kishore. prashanth pogu...
2066 kishore
kvkishore79 Offline Send Email
Dec 1, 2005
10:03 am
Hi Santhosh, In this case I think PSSDIAG tool might help you. This tool is similar to profiler but a backgound process. Go through the following link for more...
2067 prashanth pogu
prashanth_pogu Offline Send Email
Dec 1, 2005
10:14 am
Thanks Kishore.. in that stored procedure they are creating that temporary table and after complition of all operation they are droping that table... but that...
2068 Preethiviraj Kulasing...
preethi_kula... Offline Send Email
Dec 1, 2005
12:20 pm
Hi Prashath, A small mistake in the query:It should be like this SELECT em, empname INTO #TempTable FROM empdetails WHERE 1>2 (case is not the emphsis.. INTO...
2069 bhavesh prajapati
bhavesh2984g... Offline Send Email
Dec 2, 2005
6:43 am
Hi Virendra, please go through the link below that will give the answers to almost all your questions. http://support.microsoft.com/kb/314515/EN-US/ Dear Veer,...
2070 Senthil Kumar T R
trsenthilkumar Offline Send Email
Dec 2, 2005
7:31 am
Hi All, Our application was running with SQL Server 2000 for a long time where we used IDENT_CURRENT(Tablename) in one of the stored procedures to capture the...
2071 Chandra Sekhar
acshakey Offline Send Email
Dec 2, 2005
7:44 am
Hi Prashanth The query select em,empname from empdetails into #TempTB creates a temporary table #tempTB with 2 columns em and empname. If u require the temp...
2072 virender jain
virender_jain77 Offline Send Email
Dec 2, 2005
8:20 am
select A.fktable,a.pktable,a.fkcol,a.name from (select a.*,b.name from (select object_name(fkeyid) as FkTable ,object_name(rkeyid) as PkTable,b.name as fkCol...
2073 Biswajit Nanda
telljeet Offline Send Email
Dec 2, 2005
8:39 am
Hi anybody has worked in SQL Server 2005 reporting services. Basically from the reportserver link i am not able to upload a file. Can anybody tell me what may...
2074 shyam koti
shyam_k25 Offline Send Email
Dec 2, 2005
9:55 am
Hi All! what is the collation for Unicode datatypes like (nvarchar,ntext). can you write a create table statement and send it across. Thanks Shyam Koti...
2075 Santhosh
san_spy Offline Send Email
Dec 2, 2005
2:21 pm
Hi, try to upload using the reporting services development studio. See that you are the part of the site administrator or content manager group. with smiles ...
2076 Veer Ji Wangoo
vwangoo Offline Send Email
Dec 2, 2005
3:35 pm
Hi, Mindblowing expertise in MS Word.... Just goes on to show what wonders u can do with MS word. MUSIC IN MS WORD!! No Need of Speakers, No need of Sound...
2077 Anjana
anjana_r21 Offline Send Email
Dec 2, 2005
3:53 pm
This is excellent. Amazing idea and grt implementation.!!! Regards, Anjana ... -- Regards, Anjana...
2078 Santhosh
san_spy Offline Send Email
Dec 2, 2005
10:24 pm
Hi, Im trying to configure the distributers/publishers/subscribers. When I try to add a distributor in the publisher its giving the below error. <servername>...
2079 navaneetha.thankanada...
navaneethakr... Offline Send Email
Dec 3, 2005
2:50 am
1. Goto Server Properties and select the Replication Tab. 2. Click on Configure 3. Drive thru the wizard and configure the server as a distributor. Follow thw...
2080 Santhosh
san_spy Offline Send Email
Dec 3, 2005
3:17 am
Navaneeth, I am able to configure the distributor but my problem is like I have around 50 servers registered in my EM but the I dont see any of those servers...
2081 virender_jain77@...
virender_jain77 Offline Send Email
Dec 3, 2005
9:33 am
Mail transaction failed. Partial message is available....
2082 SQL Pandit
sqlpundit Offline Send Email
Dec 3, 2005
11:53 am
Mr Chandra, Before giving expert advice, it is better that you test the crap you post. ... Will throw an error. SQL Pundit Of all the pleasures in life, I like...
2083 virender jain
virender_jain77 Offline Send Email
Dec 3, 2005
12:29 pm
Hi I want to concate the result of Country columns on the basis of code column. Tables Code Country 22404 PAKISTAN 22404...
2084 bhavesh prajapati
bhavesh2984g... Offline Send Email
Dec 4, 2005
11:40 am
create table tmpGroup1 (code int, country varchar(255)) insert into tmpGroup1 values (22404, 'Pakistan') insert into tmpGroup1 values (22404, 'Sri Lanka') ...
2085 Babu PP
babupp_in Offline Send Email
Dec 5, 2005
5:06 am
Hi, I have a doubt in creating the foreign key constraints. Can I create a relation like, many-parents-one-child ? I mean there are 3 PK tables, related to...
2086 Veer Ji Wangoo
vwangoo Offline Send Email
Dec 5, 2005
5:06 am
Courtsey:- FROM Vineet Gupta (MS) http://members.microsoft.com/CustomerEvidence/Search/EvidenceDetails.asp x?EvidenceID=13793&LanguageID=1 NASDAQ, which...
2087 Roji. P. Thomas
roji_pt Offline Send Email
Dec 5, 2005
6:31 am
Virendar, You have to create UDF that concantenates the Country for each given Id. Note that for Concantenation you dont have to use a CURSOR. Here is a sample...
2088 Meiyalagan.B
softalagan Offline Send Email
Dec 5, 2005
7:21 am
Hi Babu, You can always create a table with foreign keys something like this create table tbl( col1 int , constraint fk_t3_1 foreign key (col1) references...
2089 Roji. P. Thomas
roji_pt Offline Send Email
Dec 5, 2005
7:33 am
Babu, It is NOT possible to implement a DIRECT multiple parents foreign key relation. AFAIK, there are three alternatives. 1. Create the Parent columns and...
2090 Preethiviraj Kulasing...
preethi_kula... Offline Send Email
Dec 5, 2005
8:06 am
HI Babu, For this design, I would like to introduce a master table which will have the primary key. The three tables (Many-parents) you are thinking of may...
2091 Santhosh
san_spy Offline Send Email
Dec 6, 2005
1:41 am
Hi Guys, Hope many of you might have read many books on SQL 2005. Can you please suggest me some good book in a DBA prespective. with smiles santhosh ...
2092 Babu PP
babupp_in Offline Send Email
Dec 6, 2005
5:13 am
Hi All, Thanks for your feed-back. I'm planning to go ahead with implementing triggers on child tables. Since the wirte operation is less and the read will be...
2093 Roji. P. Thomas
roji_pt Offline Send Email
Dec 6, 2005
5:13 am
Mei, What is the point in having a foreign key to two diffent tables, when both the tables needs to have the same data? Regards Roji. P. Thomas ... From:...
Messages 2064 - 2093 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