Forum Replies Created

Viewing 15 posts - 4,846 through 4,860 (of 7,429 total)

  • RE: Advice on using COUNT( )

    Chris it is DBCC UPDATEUSAGE.

    quote:


    Specifies that the rows column of sysindexes is updated with the current count of the number of rows...

  • RE: SQL.LOG

    jiangs is right, SQL.LOG is a log file for ODBC processing and can be moved to anywhere by opening Data Sources (ODBC) or ODBC Data Sources control panel appleton the...

  • RE: Space Allocation

    You cannot limit their ability to change. However, do they really need DBO rights, can you put them on some other writes option and provide the needed access, which will...

  • RE: Database Sizing

    If the log file is large, what is data file size. You can get some performance gains with moving indexes and large tables to their own filegroups. However how many...

  • RE: Cursor declaration in a Stored Procedure

    Greg is exactly right.

    "Don't roll your eyes at me. I will tape them in place." (Teacher on Boston Public)

  • RE: Getting value based on max of other fields

    To understand this properly can you give me what the output should be from your data posted and why?

    "Don't roll your eyes at me. I will tape them in place."...

  • RE: Multiple select in a search

    This will reutrn the required results. As to how to properly perform for your app, depends on your implementation.

    SELECT a.*

    from table_Advertisers a

    INNER JOIN table_AdvertiserCategories ac

    ON a.ID = ac.AdvertiserID

    WHERE...

  • RE: osql and 'ç' 'é' and so on....

    No solution I know of. Has to be a design piece in the two codes that one supports it properly and the other does not.

    "Don't roll your eyes at me....

  • RE: Numerical value out of range!!

    The table should have failed when the first item was attempted to be done this way. How did the data get out of range. What are you trying to do...

  • RE: When a connection disconnects?

    Can you give details of your situation? WHat type of app, what is happening, when does it happen?

    "Don't roll your eyes at me. I will tape them in place." (Teacher...

  • RE: VB Script not completing Active X Script

    Also did you check to make sure the file was copied? And how big is the file and network speed? Have you tested a copy by hand to see the...

  • RE: Connect to a remote server

    Yes, the same. Usually some folks use the IP address instead of name but it is better to use a name and define that name with IP in SQL Client...

  • RE: Crystal Reports & SQL Server 2000

    For Example when I write an app in ASP I will have to use Server.CreateObject and supply the proper com interface which Crstal comes with a reusable page for this....

  • RE: SPROC Date Last Modified

    No it is not possible to get a modified date and in fact has been suggested to MS but you may want to suggest yourself also for future versions. The...

  • RE: OLE DB Blows Out BEGIN TRAN

    Thanks, this is a working piece of code from my first app so your guys should be able to use. The app which I am finishing is far larger and...

Viewing 15 posts - 4,846 through 4,860 (of 7,429 total)