Viewing 15 posts - 1,126 through 1,140 (of 1,165 total)
Can you post BCP format file?
December 4, 2006 at 12:39 pm
When you drop the database sql will also drop the associated file in most of the time...
You can make use xp_fileexist procedure to check file existence...
December 4, 2006 at 12:16 pm
I believe you are using sp_delete_job job in step to delete "report queue" job in step2.
Does user who is executing the another procedure to run report queue job has the...
December 4, 2006 at 12:12 pm
I never did like this...
But you can use FOR XML cluase to save the data in xml format...
December 4, 2006 at 12:05 pm
I am purging the data from highly OLTP tables... some of my tables are accessed and inserted and updated by users all the time...
I use the following method...
1. Created the...
December 4, 2006 at 12:02 pm
Main issue with your maintenance plan is Reorganize pages will Cause the indexes on the tables in the database to be dropped and re-created with the original FILLFACTOR that was...
December 4, 2006 at 11:44 am
Your script should work without any problem but....
You are trying to rename .ldf file which is data base log file... if I am not mistaken...
You can rename the file while...
December 4, 2006 at 11:36 am
There is no option to hide few dts packages from one user and the few from other...
You can hide everything or not...
Execute permissions can be granted in a different way...
December 4, 2006 at 11:30 am
Open the transformation task (the black arrow) properties.
On the last tab (Options) ...
Check the "use fast load" checkbox.
UnCheck the "Check Constrainst" checkbox.
Check the "Enable Identity Insert" check box...
December 4, 2006 at 11:23 am
I believe you should use "ORDER BY NEWID() " in inner query to get the unique rows ...not the outer query to get the unique rows...
December 3, 2006 at 3:27 pm
I don't think there any solution to resolve torn page error other than restoring the db from previous good backup.
OR
Put the db in engency mode and take the data out...
December 3, 2006 at 12:46 am
I don't think it is possible.
December 2, 2006 at 8:33 pm
Does Login used in VB to execute the procedure has the procedure execute permissions?
1. While executing the procedure through VB, run sql trace to with ERRORS and BATCH STARTING and BATCH COMPLETED...
December 2, 2006 at 7:00 pm
Try this..
SELECT JokeID,
JokeCatID,
JokeTitle,
JokeDesc,
UserID
from (
SELECT DISTINCT top 5 JokeID,
JokeCatID,
JokeTitle,
JokeDesc,
UserID,
newid()
FROM jokes
WHERE JokeCatID = SomeNumber
ORDER BY NEWID()
) a
order by JokeID
December 2, 2006 at 6:53 pm
For high OLTP server profiler may cause performance issues when you are auding all calls, So As Steve advised use SQL trace using the procedures... and save the trace data...
December 2, 2006 at 6:41 pm
Viewing 15 posts - 1,126 through 1,140 (of 1,165 total)