Viewing 15 posts - 48,781 through 48,795 (of 49,571 total)
Unable to execute DTS jobs migrated to Version 2005...Arg!!!!!! The learning curve for SSIS is VERY steep...I have to re-write every DTS package in 2005 before I can migrate
What problems...
March 20, 2007 at 4:33 am
Try this. It's not tested, but should work. It depends on the dummy course been the only one that all students take.
SELECT
*
March 16, 2007 at 2:25 am
There's nothing else? Foreign key? Flag anywhere?
It's doable, but it's not going to be a nice query. Let me see what I can come up with....
March 16, 2007 at 12:21 am
Remove the distinct from the in. x in (1,2,2,2,2,5) and x in (1,2,5) are equivalent.
Make sure you have an index on SKey and FTSKey.
Also, try the query as a left...
March 15, 2007 at 10:21 am
What distinguishes a dummy course from a real one?
I can give you a query that will find students with a single course, but if they have multiple, there will have...
March 15, 2007 at 10:14 am
I read about this on a blog some months back. Can't remember which one. I'm pretty sure it was one of the SQL dev teams.
SQL Server 2005 is under no...
March 15, 2007 at 1:45 am
There's no need to create a DTS package just to run a stored proc. A SQL Agent5 job is more than sufficient.
No need to add additional complexity.
March 15, 2007 at 12:37 am
Image stores binary data, not text. For storing large amounts of text data use the text or ntext data types.
March 14, 2007 at 12:33 am
select suser_sname()
This is assuming they're using windows authentication to connect to the server. If thery're using sql authent, then there's no way I know of to find the windows login.
March 13, 2007 at 6:40 am
Don't know about the first or last. The error says there's a syntax error near '-', but there are no dashes in what you've posted.
There's also a syntax error in...
March 13, 2007 at 6:38 am
No, I meant a real table. Depending whether you need the variables global across all connections or global across all queries on a single connection you could have aa spid...
March 13, 2007 at 2:45 am
The security around the metadata has been changed from 2000 to 2005. Only if a user has some right to an object can they see it in the system views.
March 13, 2007 at 12:42 am
Back the database up and restore it to a 2005 server. The db will be converted during the restore. Update all the statistics afterwards, if you can.
You should check afterwards...
March 12, 2007 at 2:15 am
Viewing 15 posts - 48,781 through 48,795 (of 49,571 total)