Viewing 13 posts - 271 through 283 (of 283 total)
Have you looked at the logs? Do they have any more information? If you haven't looked, have a look at the job history (right-click the job under SQL...
August 19, 2008 at 6:24 am
In Query Analyzer/SQL Management Studio you can output the results directly to a file (Query menu).
August 5, 2008 at 10:37 am
You could use a cursor and while loop as in the following example to avoid the extra table you have with the list of table names in it:
use...
August 5, 2008 at 10:34 am
Where's the query?
July 11, 2008 at 6:55 am
Sounds like you didn't select the Maintenance Cleanup Task when using the wizard. This task will delete the files of the disk after a specified amount of time. ...
July 11, 2008 at 6:49 am
Some errors immediately get passed out of the code block to the calling procedure/application (they don't get caught by the catch at the same level as the code block). ...
July 3, 2008 at 5:42 am
We had no problems on a cluster with using mount points but we found monitoring disk space was a problem. We have a drive letter for a small disk...
July 3, 2008 at 2:36 am
You can try cast. This example will transform a varchar to an int:
create view text_vw (itm, sile, eqty)
as ...
July 2, 2008 at 8:40 am
Books Online for SQL 2000 has an example script in it under DBCC SHOWCONTIG, but it does an indexdefrag based on a parameter for the logical fragmentation. It should...
June 11, 2008 at 1:12 pm
or you could have done the following:
1. ALTER DATABASE SET OFFLINE;
2. Move/copy the database file to the new location
3. ALTER DATABASE ');
4. ALTER DATABASE SET...
June 1, 2008 at 4:49 am
May 29, 2008 at 10:53 am
You can download a trial version of SQL Server which will run on XP or some of the books come with it on CD.
Personally, I prefer the study...
May 29, 2008 at 10:52 am
Only thing to think about is that SQL Server in the Cluster may not be able to see all the disks that are in the server - it can only...
March 17, 2008 at 1:31 pm
Viewing 13 posts - 271 through 283 (of 283 total)