Viewing 15 posts - 481 through 495 (of 575 total)
Is there not a Primary Key (Integer) to join the 2 tables together? How could you expect perfomance to be good by joining 2 tables on the above information?
April 27, 2004 at 10:33 pm
Grasshopper,
it depends if you want the new tables to participate in the Replication!
April 27, 2004 at 10:27 pm
Ok. Then Merge Replication would be a better option if the users are disconnected from the network at any length of time. However, if the users are always connected to...
April 27, 2004 at 10:25 pm
(A) Upload the Database any way you like.
(B) Set up Transactional Replication between the 2 Databases.
April 25, 2004 at 11:47 pm
I don't see how a view would accomplish this!
A simple trigger is definitely what you need! It would be something like this,
CREATE TRIGGER TrgInsDelRecord
ON Address
FOR INSERT, DELETE
AS
BEGIN
INSERT Address2
SELECT * FROM...
March 29, 2004 at 5:47 pm
Sorry, correction it should be,
SELECT Customer_No, Date, Order_No, Part_no, SUM(Total_Amount_Paid) AS 'Total'
FROM Table
WHERE Order_no = 14
GROUP BY Customer_No, Date, Order_No, Part_no
March 25, 2004 at 5:05 pm
Try this!
SELECT Customer_No, Date, Order_No, Part_no, SUM(Total_Amount_Paid) AS 'Total'
FROM Table
WHERE Part_no = 14
GROUP BY Customer_No, Date, Order_No, Part_no
March 25, 2004 at 5:03 pm
That error means that the SQL Server is not configured to use "Windows NT Authentication". You have obviously configured the SQL Server for "SQL Server Security only".
Check the properties of...
March 24, 2004 at 6:24 pm
In your first paragraph,
I have a lot of users who are using a Microsoft Access 2003 ADP (an Elementary school report card application) to input and print out report...
March 24, 2004 at 6:20 pm
If you are talking about scripting your replication once you have created it then, in EM click on the tools menu then point to replication and choose "Generate Script". In...
March 24, 2004 at 4:45 pm
Good! Now join the rest of us!
March 22, 2004 at 5:19 pm
Create an IDENTITY COLUMN in your table and run the following query. A self JOIN is the easiest way to do this!
SELECT A.Col_A, A.Col_B, A.Vol
FROM TestTbl A CROSS JOIN TestTbl B
WHERE...
March 22, 2004 at 5:17 pm
You have to DECLARE a Variable and fill that variable with @@IDENTITY....
Here, try this!
SET QUOTED_IDENTIFIER ON
GO
SET ANSI_NULLS OFF
GO
CREATE PROCEDURE InsertNewPhone
AS
DECLARE @PhoneID INT
INSERT INTO phone (PhoneNumber) VALUES...
March 22, 2004 at 4:56 pm
If your application was written correctly in the first place then you would only have to make the change ONCE in yolur application!
One correct way of doing this properly the...
March 22, 2004 at 4:46 pm
Viewing 15 posts - 481 through 495 (of 575 total)