Forum Replies Created

Viewing 15 posts - 4,531 through 4,545 (of 7,429 total)

  • RE: Full Text Search service is red...green..red...

    Try changing it back to SystemAccount in Services then rechange in EM.

  • RE: shrink file

    Also on the second point, if it is SQL 7 the point is marked but the virtual logs sometimes do not free until transactions take place then it may fre...

  • RE: odbc16BIT

    What setup are you referring to?

  • RE: MSDTC not available

    What is the error when failing and have you check the EventViewer in Windows to check for messages from the Service. Always start with looking there.

  • RE: Left Join performance issue

    No, I don't think a table design change or index will fix it. The problem I believe comes from the fact TableB must be ACTIVE and TableA must alos be....

  • RE: Supress intermediate results from SP: SQL 2K

    If you FECTH them into a cursor, variable or temp table object the rows should not output just the number of rows affected. Can you post an example of the...

  • RE: Supress intermediate results from SP: SQL 2K

    What exactly are you getting is it the results of a select statement or the number of rows affected? If number of rows place SET NOCOUNT ON at the begining...

  • RE: Profiler

    Yes 37 seconds of CPU time used. And yes it would be nice but for now the best you can get is thru PerfMon or Task Manager on SQL as...

  • RE: Is there an sp_showplan command?

    Or you can setup traces on the server to ouptu to a Profiler file. Nothing to show live except Profiler itself.

  • RE: Latest Analysis Service Pack Version

    As far as I know this is current

    To find out the current level of Windows 2000 Analysis Services, start the Analysis Manager, right-click on the Analysis Servers node, and select...

  • RE: Loading the latest ODBC driver

    The only way I know is using ADO to make the connection and get the driver versions back.

    From MSDN

    quote:


    Version Property

    ...

  • RE: sql server for home business?

    SQL Server can be run on any machine of your choice for really any reason. The licensing is now based on number of CPU's so if the box has 2...

  • RE: Error 926

    From SQL BOL

    quote:


    sp_resetstatus turns off the suspect flag on a database. This procedure updates the mode and status columns of the...

  • RE: Format data

    Greg is right, thr ROUND function only rounds the value out to that length but the output length of the data remains intact. Thus 1.00000000001 round out to a length...

  • RE: Left Join performance issue

    You should look at your execution plan to see what it is doing during that step.

    Try this and see what happens.

    SELECT TableA.LINE_ID

    FROM

    TableA

    LEFT OUTER JOIN

    (SELECT

    RecName,

    RecType,

    Price,

    Line_ID

    FROM TableB

    WHERE TableB.Status = 'ACTIVE')...

Viewing 15 posts - 4,531 through 4,545 (of 7,429 total)