Viewing 15 posts - 16 through 30 (of 219 total)
Got it
Select * from Xyz where Customer_Id in (Select Customer_Id
from Xyz
Group by Customer_ID,Product_ID
having Count(Customer_ID) >= 2 )
September 2, 2004 at 11:38 am
Yes I have done UNION and a join to get other missing column. But I do need to find out the duplicate values for each column
August 23, 2004 at 12:14 pm
Strange I don’t see the mail icon, even after i installed the Out look client on the server. Is there some thing that we need to do to see...
August 23, 2004 at 11:38 am
I take my word back. Actually the tables are not exactly the same however there are some common columns. I need all the common columns + one more...
August 23, 2004 at 6:35 am
August 18, 2004 at 10:52 am
May the status is closed and there is active customer data for that customer
August 18, 2004 at 8:29 am
Got It
Select emails from EmailTable where
Emais <> '' AND
( patindex('%[^-.@0-9a-zA-Z]%', emails) = 1
OR emails NOT like '%.%'
OR emails NOT like '%@%'
OR...
August 18, 2004 at 8:03 am
Thanks Steve. That help little bit. Here is what I come up with
Select customer_id,email_address from Emailtable
Where -
(email_address Not like '%.%' OR...
August 17, 2004 at 3:42 pm
Thanks Bill. I agree with you
August 6, 2004 at 8:46 am
You don’t need to drop and recreate. Simple check the box “Clustered” it will automatically converts to clustered PK. I did this a while back in EM for a...
August 6, 2004 at 7:50 am
You can convert a non-clustered PK to Clustered PK even though there are chilled tables referencing the parent table. It might take longer time depends on how big is...
August 5, 2004 at 8:25 am
You sure can take the file backup in the EM. You just have to specify which FG or File you want to take the backup. Don’t forget to take...
August 5, 2004 at 8:11 am
In general Indexing makes your log file to grew depends on your recovery model. If you want to keep your log file small re index first and then shrink...
August 1, 2004 at 9:38 am
Make sure your database is not a simple recovery model. You can not use FG backup for a simple recovery model database
July 31, 2004 at 2:22 pm
Viewing 15 posts - 16 through 30 (of 219 total)