Viewing 15 posts - 91 through 105 (of 182 total)
Yeah, he doesn't have EM/SQL Server on his machine. I can't see why it would affect the host computer. The DTS package is being loaded on the host...
April 5, 2006 at 3:17 pm
I'd advise you to use separate sp's. It is perfectly fine to use your application to determin the sp to use. But if you must... this is how...
April 5, 2006 at 7:59 am
I know this is an OLD post, but I was looking up info as I found a "solution" to my problem a colleague was having. We learned there is...
April 4, 2006 at 4:14 pm
make sure the log directory has the appropriate file security settings. are you able to run the dts through enterprise manager?
April 4, 2006 at 1:36 pm
so I am just taking it as a bug in SQL Server and moving on... I love finding these things, even though I can't do what I want.
April 4, 2006 at 9:19 am
Dionisis,
Good Luck!!!!! I've been involved with way too many of these situations. Best advice I can give you is to make your own database schema and make an...
April 3, 2006 at 8:06 am
Thank you for your responses gentlemen. I was hoping to use the table function in a view, so using variable(s) won't work for me. I am unsure about...
April 3, 2006 at 7:45 am
they are the same. ON just gets higher precedence.
March 31, 2006 at 1:06 pm
ORDER BY
CASE WHEN LEFT(projectnum,2) = '99' THEN 19 ELSE 20 END,
projectnum
March 31, 2006 at 11:55 am
If you all really want to know my they created the "ON" clause, it's for left/right joins...
SELECT a.*
FROM a
LEFT JOIN b
on a.id = b.id
and b.val > 1
left join c
on isnull(b.id,0)...
March 31, 2006 at 10:19 am
JOINS are processed and then the WHERE clause. You can treat the ON clause the same as the WHERE clause, depending how you want to organize your query. ...
March 30, 2006 at 12:49 pm
If you still feel you need 2 databases, I found MSDN's Log Shipping articles...
March 30, 2006 at 7:55 am
I'm not the best admin in the world, but can't you just port over commands from the log? If a new table is created, it'll be in the log....
March 29, 2006 at 12:19 pm
Viewing 15 posts - 91 through 105 (of 182 total)