Skip to search.

Breaking News Visit Yahoo! News for the latest.

×Close this window

SQLQueriesNoCode

The Yahoo! Groups Product Blog

Check it out!

Group Information

  • Members: 3237
  • Category: SQL
  • Founded: Feb 17, 2003
  • 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

Advanced
Messages Help
Messages 2594 - 2624 of 4869   Newest  |  < Newer  |  Older >  |  Oldest
Messages: Simplify | Expand Author Sort by Date v
2624 chels
chels_1977 Send Email
Nov 15, 2006
10:07 am
Hi Robert, Replication is a server level configuration which requires few additional objects to be created on the source server like Publisher, Distributer,...
2623 robert sackey
papsac Send Email
Nov 15, 2006
9:20 am
Hi Micheal, Could you please give me an example of a sample code for this.Thanks Robert ... From: Michael Weiss <mweiss@...> To:...
2622 robert sackey
papsac Send Email
Nov 15, 2006
9:16 am
Hi Elan, I will be very grateful if you could explain your pint further for me.In terms of performance, what are the likely problems. Also with th new column...
2621 chels
chels_1977 Send Email
Nov 15, 2006
3:27 am
Hi, I go with Michael's option. Just for one table going for Replication is not a wise thing to do. Apart from the additional column it creates there could be...
2620 Michael Weiss
mweiss@... Send Email
Nov 14, 2006
10:10 pm
Hi Robert, Take a look at this post http://www.thescripts.com/forum/thread513448.html. I am wondering why you can't use a On Insert Trigger as well as Update ...
2619 robert sackey
papsac Send Email
Nov 14, 2006
6:45 pm
I may have to clarify my problem again I have SQL instance called PAPS on Dell Server SV001 and another instance called SAM other Dell Server called SV002....
2618 robert sackey
papsac Send Email
Nov 14, 2006
5:52 pm
Hi Rowland, I have read a lot about replication and finding my way out. I however need some help. Anytime a replication is set, I hope you see that it creates...
2617 Arnie Rowland
arnie1568 Send Email
Nov 13, 2006
5:35 pm
The replication process takes care of that. Basically, it goes like this. First you create a 'snapshot&#39; of the table to be replicated. And then the Replication...
2616 robert sackey
papsac Send Email
Nov 13, 2006
11:05 am
Thanks Rowland, I have just started investigating that and I am beginning to believe that will be the best option. May i please know if you have an idea as to...
2615 Arnie Rowland
arnie1568 Send Email
Nov 11, 2006
9:15 pm
You can execute this query (revision of the one Tracey sent you). However, since there is no 'simple&#39; way to identify the 'new' rows, this process will become...
2614 robert sackey
papsac Send Email
Nov 11, 2006
8:50 pm
I may have to clarify my problem again I have SQL instance called PAPS on Dell Server SV001 and another instance called SAM other Dell Server called SV002....
2613 tgray@...
imadba2006 Send Email
Nov 10, 2006
7:18 pm
Robert, You can do it as follows (assuming that Table1.Field1 and Table2.Field4 are the PK on their respective tables): INSERT Table2(Field4, Field5, Field6)...
2612 Arnie Rowland
arnie1568 Send Email
Nov 10, 2006
7:15 pm
Robert, Have you investigated Replication and/or "Log Shipping" as possible solutions? Does Table1 have a datetime column for the insertion date/time? If not,...
2611 John Warner
john@... Send Email
Nov 10, 2006
7:00 pm
I'm less then clear here, is this DB2 you are talking about or what DBMS? John Warner...
2610 robert sackey
papsac Send Email
Nov 10, 2006
6:28 pm
Hi All, I need urgent help on this. I have two databases.I will want Table1 (Field1,Field2,Field3) in DB1 to tranfer data into Table2(Field4,Field5,Field6) in...
2609 Debbie
southfldeb@... Send Email
Nov 9, 2006
7:04 am
A made a Cheat and it works!!! Select A.recip_id ,A.firstdos AS Date_From ,b.pos_prov_type as POS , min(b.To_date_of_service) as Date_TO INTO #TAB3 from ( ...
2608 Debbie
southfldeb@... Send Email
Nov 9, 2006
3:00 am
I tried you query and these are the results returned: 123 2006-03-15 00:00:00.000 2006-03-15 00:00:00.000 ER 123 2006-03-16 00:00:00.000 2006-03-16...
2607 Arnie Rowland
arnie1568 Send Email
Nov 8, 2006
6:07 pm
Look up 'partitioning&#39; in Books Online: ms-help://MS.SQLCC.v9/MS.SQLSVR.v9.en/udb9/html/8936789a-e803-4814-83f2-77e7 17f81736.htm - Arnie Rowland "I am a great...
2606 robert sackey
papsac Send Email
Nov 8, 2006
4:34 pm
Hi, Can anybody explain to me how partitioning works in SQL 2005? Thanks [Non-text portions of this message have been removed]...
2605 imadba2006 Send Email Nov 8, 2006
2:28 pm
Debbie, I made a change to the way the #member table is populated and that addresses your issue; here's that code: SET NOCOUNT ON DECLARE @BegDat datetime ...
2604 Stephen Russell
lotmate Send Email
Nov 8, 2006
12:38 pm
... Select Max(Date), toolid From yourtable Group by toolid Stephen Russell DBA / .Net Developer Memphis TN 38115 901.246-0159 "Our scientific power has outrun...
2603 Andrew
andrewonebay Send Email
Nov 8, 2006
7:40 am
hi folks, any help much appraciated: i have a table of tools, and one of inspections. the inspections table has individual inspection records tblinspections ...
2602 Debbie
southfldeb@... Send Email
Nov 8, 2006
7:39 am
I made a change to the member table. Notice the 2 ER visits. Your query gets the same results Mine is is getting. create table dbo.member(memberid int, begdat...
2600 imadba2006 Send Email Nov 2, 2006
9:18 pm
Here's the solution I came up with: First, create and populate a new table as follows: create table dbo.member(memberid int, begdat datetime, enddat datetime,...
2599 Debbie
southfldeb@... Send Email
Nov 2, 2006
4:17 pm
Use a Union joining the table to its self or even a select distinct....
2598 golgi
golgi_ap Send Email
Nov 2, 2006
4:10 pm
try select memberid,min(fromdos),max(todos),pos from POS group by memberid, pos...
2597 Debbie
southfldeb@... Send Email
Nov 2, 2006
6:09 am
My data looks like this: memberid fromdos Todos POS ... 123 03/15/2006 03/15/2006 ER 123 03/16/2006 03/16/2006...
2596 imadba2006 Send Email Nov 2, 2006
12:04 am
I think the best solution would be as follows: INSERT Table3(primekey, table1_concat, table2_concat) SELECT Table1.primekey, x1 + y1 + z1 + p1 + q1 + r1, x2 +...
2595 srussell@...
lotmate Send Email
Nov 1, 2006
3:06 pm
... Well this gets into the meat of programming and what rules you want to follow. 1) Make a Business Class for inventory and put all inventory code there. 2)...
2594 Qurashi Ameer
dinq11 Send Email
Nov 1, 2006
1:39 pm
hi all Acctuly i have using Ms sql server 2000 n Vb.net. ma problem is dat i have a customer invoice. When i save the records it goes in to...
Messages 2594 - 2624 of 4869   Newest  |  < Newer  |  Older >  |  Oldest
Add to My Yahoo!      XML What's This?

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