Viewing 15 posts - 16 through 30 (of 342 total)
I installed SP3a and it seems to work again... Thanks for the brain cycles.
Guarddata-
January 14, 2004 at 8:58 am
Thomas is correct. If this is just an example of something that actually requires dynamic SQL - look at the sp_executesql and use output parameters to get the results.
Guarddata-
January 7, 2004 at 8:17 am
OR
INSERT INTO C ( ID, slVarChar, BID )
SELECT A.ID, a.somelongVarChar, B.ID
From B
Join A ON A.somelongVarChar LIKE '%' + B.someshorterVarchar + '%'
Guarddata-
December 12, 2003 at 8:51 am
Depends on your queries. Also - at one point, an "empty" string was not possible but always had at least one space (seems like that was a default for...
December 12, 2003 at 8:42 am
I appreciate the input. I was hoping there was something I had missed.
Guarddata-
December 9, 2003 at 1:43 pm
Correct on the restore with Move...
There should be no problems with the logins if you stay in the same Enterprise Manager control
Guarddata-
December 4, 2003 at 12:45 pm
Yep - the backup and restore should work. Good luck with it all!
Guarddata-
December 4, 2003 at 11:25 am
Wish I were home - I have version 7.0 there.
A couple of observations...
1) You can't stop the services or enterprise manager won't work. Do everything without stopping the services.
2)...
December 3, 2003 at 11:47 am
I'm running the SQL2000 version, but believe it is the same in this instance.
Right-click on the database. Under the "All Tasks" option there should be a detach database option.
Once...
December 3, 2003 at 10:14 am
VGillingham
1) If you have the ability to reinstall Enterprise Manager, Query Analyzer should be part of that.
2) You can detach and reattach via Enterprise Manager
3) I have also been in...
December 3, 2003 at 9:27 am
Sure - I understand that. From a performance perspective, I have found the OUTER JOIN to be much better when there are lots of rows. The NOT IN...
December 2, 2003 at 2:37 pm
Like a lot of things...it depends.
For example, if all you need is to delete the entry after 48 hours if the status is active, you can create a stored procedure
CREATE...
December 2, 2003 at 2:33 pm
Yeah - null handling in these types of queries is wierd. For example...
select * from table1 where id not in ( null )
will produce no results. The problem...
December 2, 2003 at 2:26 pm
It appears that you have an interface where the user reviews the records that have been inserted app. Rather than writing the message into the data itself, you may...
December 2, 2003 at 2:02 pm
What kind of error messages are you experiencing? Have you tried reloading the client software?
Guarddata-
December 2, 2003 at 1:56 pm
Viewing 15 posts - 16 through 30 (of 342 total)