Viewing 15 posts - 196 through 210 (of 530 total)
Could it be so easy that your Windows Firewall is blocking your ports?
April 11, 2006 at 5:31 am
I do not know about your type of errors, but wouldn't WMI from outside SQL Server be a better, and less intrusive, way of retreiving HD information?
A pure speculation would...
April 11, 2006 at 5:29 am
BTW, could it have something to do with the smiley (the wrongly interpreted format code for the forum) in the script?
April 7, 2006 at 4:32 am
Sorry, I havn't seen that problem. Have you read and followed all the header information in the script?
April 7, 2006 at 4:30 am
Maybe you also should look into updating the statistics.
Is it just the reports that takes time or are you also experiencing problems loading or removing data?
Are your dataloading in...
April 6, 2006 at 4:52 am
Remember that there are more then one SP that controls access to DTS packages. Search for all SPs with the name DTS in them and you will be surprised by...
April 6, 2006 at 2:44 am
Nice solution!
I would like to contribute too. If we only want to find IF there is a gap in the sequence we only need to verify that COUNT(*) + MIN(ID)...
April 5, 2006 at 8:52 am
Okay. For it to work you need to delete data other then the data currently locked by Access. I.e if you are doing a full delete (consider TRUNCATE instead) you...
April 5, 2006 at 7:07 am
Basically no. You can't 'open' a table without generating some kind of locks (even if you have used just a SELECT). You should investigate WHICH type of locks have been...
April 5, 2006 at 4:03 am
I would recommend the below script that I use very extensively.
It has a stand alone configuration file which is created the first time you run the script. In the script...
April 5, 2006 at 3:17 am
This seems like a violation of the first normal form. You probably shouldn't have stored your three values in one column in the first place...
Better to store them in three...
April 5, 2006 at 3:05 am
If you retrieve the query text it will contain the linebreaks and linefeeds you need for formatting your SP the way your GUI does. So if you just display the SP text...
April 5, 2006 at 2:53 am
IF you use this approach, remember the little gottcha if you try to run it in SQL Server 2000 environment; the rowsize is 8094 bytes, you can't sort and you...
April 5, 2006 at 2:42 am
Could it be an easy oversight that you have no rows where 'x' is equal or bigger then the sum(col)?
April 5, 2006 at 2:37 am
Yes. That could rise a big concern. Since all datamovement (even during defragmentation) is logged and will be kept in the transaction log, something really needs to be done either...
April 4, 2006 at 9:14 am
Viewing 15 posts - 196 through 210 (of 530 total)