Viewing 15 posts - 1 through 15 (of 232 total)
Sean Lange (3/23/2012)
Eugene Elutin (3/23/2012)
Sean Lange (3/23/2012)
Please! "Even better, don't use loops."? Why? :w00t:
I do not agree!
If you say that, you should say it right!
OK, don't use loops in...
March 23, 2012 at 9:22 am
Thanks guys for clarification. Got it now.
March 22, 2012 at 8:43 am
SELECT * FROM table1
except
SELECT * FROM table2
November 10, 2010 at 3:59 am
It means Unicode. All Unicode strings should be prefixed with N.
May 19, 2010 at 7:12 am
By default the port is 1433, but if it changed you can check do doing the following:
You can open the SQL Server configuration manager and then go to SQL Server...
May 18, 2010 at 2:42 am
Thanks John!
Looking into the XML code was my first instinct also and I did that, but the XML also contains the query only.
I think I need to have through look...
April 15, 2010 at 6:03 am
Thanks for your reply.
I tried using the wizard by double-clicking the component, but it asks me to re-setup everything.
By re-setup I mean, when the wizard is opened, on the...
April 14, 2010 at 1:50 am
Jpotucek (1/5/2010)
This actaully works:
SELECT
a.CONTACT_TYPE_ID
,b.MEMBER_NUMBER
,c.CLIENT_NUMBER
FROM FRATERNAL.CONTACTS a
inner join FRATERNAL.CLIENT_CONTACTS a1 on a.CONTACT_ID = a1.CONTACT_ID
inner join FRATERNAL.MEMBER b on a1.CLIENT_ID = b.CLIENT_ID
inner join FRATERNAL.CLIENT c on a1.CLIENT_ID = c.CLIENT_ID
BUT...
January 5, 2010 at 8:47 am
check this
SELECT c.Client_number
,m.Member_number
,contact_type_id
FROM CLIENT c
INNER JOIN MEMBER m
ON c.CLIENT_ID = m.CLIENT_ID
INNER JOIN CLIENT_CONTACTS cc
ON cc.CLIENT_ID = c.CLIENT_ID
INNER JOIN CONTACTS ct
ON ct.CONTACT_ID = cc.CONTACT_ID
January 5, 2010 at 7:57 am
This is the query from what I can understand what you need
SELECT count(*)
FROM schema.table1
INNER JOIN schema.table2
ON contact_type_id = member_number
where contact_type_id = 'Email1'
IF you can post table schema, sample...
January 5, 2010 at 7:01 am
OK. Are you able to copy from the command prompt?
January 4, 2010 at 5:02 am
It is because of the keyword [localhost]. local host will not be recognized by the file system (as far as I know), you will have to use the actual server...
January 4, 2010 at 4:22 am
Try to have a breakpoint before the COPY command and when you reach the breakpoint check the value of your variables.
Check whether the path are correct
January 4, 2010 at 1:50 am
Try this.
sp_helpdb 'database Name'
December 31, 2009 at 4:21 am
I have planned to improve my performance tuning skill.
Starting with "SQL Server 2008 Query Performance Tuning Distilled" by Grant Fritchey.
December 31, 2009 at 3:51 am
Viewing 15 posts - 1 through 15 (of 232 total)