Viewing 13 posts - 1 through 13 (of 13 total)
Derek Dongray (2/4/2009)
philcruz (2/4/2009)
CREATE VIEW [dbo].[vw_UnsubscribedEmails]
AS
SELECT email, dateCreated, source
FROM dbo.unsubscribedEmails
UNION
SELECT email, NULL...
February 4, 2009 at 6:55 pm
Lynn Pettis (2/4/2009)
February 4, 2009 at 10:49 am
I want to filter out any sourceContacts that have a matching email in the customer table. Due to the LEFT JOIN, if there is no match by email then...
February 4, 2009 at 10:34 am
If use the initial query as a subquery and then filter by customerID IS NULL, i.e.
SELECT qry.sourceContactID
FROM
(
SELECT
...
February 4, 2009 at 10:11 am
Well, I'm executing the MDX query directly from Management Studio so I know the exact statement. I did try running profiler to see if it would give me the...
September 27, 2007 at 2:14 pm
No, the password hasn't changed.
Is there a way to get a more detailed error message?
March 27, 2007 at 8:06 am
Yes, we are using full text search.
May 24, 2006 at 7:50 am
fyi, I updated the scripts to work on SQL Server 2005.
http://philcruz.com/blog/2006/04/more-intelligent-backup-and-restore.htm
April 19, 2006 at 12:11 pm
I update the scripts to work on SQL Server 2005.
http://philcruz.com/blog/2006/04/more-intelligent-backup-and-restore.htm
April 19, 2006 at 12:09 pm
I found the problem. The database was originally a SQL2000 db that was being replicated. It still had some tables like sysarticles. I dropped those tables and...
April 4, 2006 at 12:32 pm
Soon after I posted I realized having orderdetailid and productid in the group by was causing the multiple rows. I made the changes like you describe and it works now....
March 22, 2006 at 2:48 pm
Nevermind. Turns out I was restoring a replicated version of the db that had the identity set to false. The restore of the backup of the primary db is...
March 6, 2006 at 4:05 pm
Viewing 13 posts - 1 through 13 (of 13 total)