Viewing 15 posts - 19,396 through 19,410 (of 26,490 total)
Which table are you trying to update, tableA or TableB. It is really hard to tell from the code you posted.
August 3, 2009 at 12:02 pm
This:
SELECT
t1.col,
t2.col,
etc..
FROM
T1
LEFT JOIN T2
...
August 3, 2009 at 11:36 am
I'm not really sure what your problem may be here. It would help to see the full error message and the code that you are having problems with.
August 3, 2009 at 11:22 am
ifila (8/3/2009)
Lynn,I dont know what you have installed on your computer. :w00t:
Can you give me a clue as to what format will work ?
I have 2000 on my system at...
August 3, 2009 at 11:18 am
How many rows are returned with the following query?
select
mt1.*
from
DBO.MyTable01 mt1
where
mt1.Type IN (10,810)
and exists (select...
August 3, 2009 at 11:10 am
ifila (8/3/2009)
I am using Config Mgr 🙁I have attached a screen shot.
FYI, not everyone has Office 2007 (or Word 2007) and as I have more than enough things installed on...
August 3, 2009 at 11:02 am
andrewd.smith (8/3/2009)
However, a minor change fixes the problem I think.
WHERE (a.START_DATE = DATEADD(day, -14, GETDATE()))
Here's a variation that removes...
August 3, 2009 at 10:56 am
Not sure if the above actually works. I got an empty result set with this WHERE clause
WHERE
a.START_DATE >= dateadd(dd,-14,getdate()) and
a.END_DATE <=...
August 3, 2009 at 10:12 am
Luke L (8/3/2009)
Lynn Pettis (8/2/2009)
August 3, 2009 at 9:04 am
It would help if you would please provide the DDL for the table, sample data in a readily consummable format, expected results based on the sample data.
For help providing this,...
August 3, 2009 at 8:36 am
CrazyMan (8/3/2009)
This might sound crazy, but just wanted to know what is the background process when we write a...
August 3, 2009 at 7:08 am
naginderp (8/3/2009)
My Situation is that data in table is reduntant or duplicate . So We Need to maintain the Identity Column in Table to maintain...
August 3, 2009 at 7:00 am
Not sure why you would limit yourself to only out of the box components? SSIS is designed to be extensible, allowing you to develop or purchase custom components to...
August 3, 2009 at 6:53 am
zubamark (8/3/2009)
try this:convert(char(10),convert(datetime, 'jul 5 2009 12:00 AM'),101)
Yep. That is the answer that was provided earlier in the thread.
August 3, 2009 at 6:46 am
Jeff Moden (8/2/2009)
Lynn Pettis (8/2/2009)
August 2, 2009 at 9:29 pm
Viewing 15 posts - 19,396 through 19,410 (of 26,490 total)