Search the web
Sign In
New User? Sign Up
sqlcon
? Already a member? Sign in to Yahoo!

Yahoo! Groups Tips

Did you know...
Want to share photos of your group with the world? Add a group photo to Flickr.

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 2064 - 2093 of 6519   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
2064
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...
prashanth pogu
prashanth_pogu
Offline Send Email
Dec 1, 2005
9:47 am
2065
Dear Prashant, I think this query is used to create a temp table same as table empdetails without any data. Regards, Kishore. prashanth pogu...
kishore
kvkishore79
Offline Send Email
Dec 1, 2005
9:59 am
2066
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...
kishore
kvkishore79
Offline Send Email
Dec 1, 2005
10:03 am
2067
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...
prashanth pogu
prashanth_pogu
Offline Send Email
Dec 1, 2005
10:14 am
2068
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...
Preethiviraj Kulasing...
preethi_kula...
Offline Send Email
Dec 1, 2005
12:20 pm
2069
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,...
bhavesh prajapati
bhavesh2984g...
Offline Send Email
Dec 2, 2005
6:43 am
2070
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...
Senthil Kumar T R
trsenthilkumar
Offline Send Email
Dec 2, 2005
7:31 am
2071
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...
Chandra Sekhar
acshakey
Offline Send Email
Dec 2, 2005
7:44 am
2072
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...
virender jain
virender_jain77
Offline Send Email
Dec 2, 2005
8:20 am
2073
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...
Biswajit Nanda
telljeet
Offline Send Email
Dec 2, 2005
8:39 am
2074
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...
shyam koti
shyam_k25
Offline Send Email
Dec 2, 2005
9:55 am
2075
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 ...
Santhosh
san_spy
Offline Send Email
Dec 2, 2005
2:21 pm
2076
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...
Veer Ji Wangoo
vwangoo
Offline Send Email
Dec 2, 2005
3:35 pm
2077
This is excellent. Amazing idea and grt implementation.!!! Regards, Anjana ... -- Regards, Anjana...
Anjana
anjana_r21
Offline Send Email
Dec 2, 2005
3:53 pm
2078
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>...
Santhosh
san_spy
Offline Send Email
Dec 2, 2005
10:24 pm
2079
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...
navaneetha.thankanada...
navaneethakr...
Offline Send Email
Dec 3, 2005
2:50 am
2080
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...
Santhosh
san_spy
Offline Send Email
Dec 3, 2005
3:17 am
2081
Mail transaction failed. Partial message is available....
virender_jain77@...
virender_jain77
Offline Send Email
Dec 3, 2005
9:33 am
2082
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...
SQL Pandit
sqlpundit
Offline Send Email
Dec 3, 2005
11:53 am
2083
Hi I want to concate the result of Country columns on the basis of code column. Tables Code Country 22404 PAKISTAN 22404...
virender jain
virender_jain77
Offline Send Email
Dec 3, 2005
12:29 pm
2084
create table tmpGroup1 (code int, country varchar(255)) insert into tmpGroup1 values (22404, 'Pakistan') insert into tmpGroup1 values (22404, 'Sri Lanka') ...
bhavesh prajapati
bhavesh2984g...
Offline Send Email
Dec 4, 2005
11:40 am
2085
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...
Babu PP
babupp_in
Offline Send Email
Dec 5, 2005
5:06 am
2086
Courtsey:- FROM Vineet Gupta (MS) http://members.microsoft.com/CustomerEvidence/Search/EvidenceDetails.asp x?EvidenceID=13793&LanguageID=1 NASDAQ, which...
Veer Ji Wangoo
vwangoo
Offline Send Email
Dec 5, 2005
5:06 am
2087
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...
Roji. P. Thomas
roji_pt
Offline Send Email
Dec 5, 2005
6:31 am
2088
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...
Meiyalagan.B
softalagan
Offline Send Email
Dec 5, 2005
7:21 am
2089
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...
Roji. P. Thomas
roji_pt
Offline Send Email
Dec 5, 2005
7:33 am
2090
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...
Preethiviraj Kulasing...
preethi_kula...
Offline Send Email
Dec 5, 2005
8:06 am
2091
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 ...
Santhosh
san_spy
Offline Send Email
Dec 6, 2005
1:41 am
2092
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...
Babu PP
babupp_in
Offline Send Email
Dec 6, 2005
5:13 am
2093
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:...
Roji. P. Thomas
roji_pt
Offline Send Email
Dec 6, 2005
5:13 am
Messages 2064 - 2093 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