Viewing 6 posts - 16 through 21 (of 21 total)
You could create view of the table table [Person] with all first names = 'John' , and then use the BCP program to bulk copy the data out of that...
April 28, 2006 at 5:33 am
James, tried it again and that bug is fixed. Thanks.
April 6, 2006 at 9:52 am
Thanks, Good site but noticed one minor bug....if you have a database collate statement in a select statement it will format it but not correctly, and give an error message...
April 6, 2006 at 5:10 am
Try this sql.....
use master
BACKUP LOG "your database" WITH TRUNCATE_ONLY
use "your database"
dbcc shrinkfile ("your database log file name", 0)
April 5, 2006 at 4:25 am
Try this command from QA, with the correct path for your error log location, and look for the keywords you want such as warning , log full etc...
EXEC sp_readerrorlog 1,...
March 28, 2006 at 9:03 am
Viewing 6 posts - 16 through 21 (of 21 total)