Forum Replies Created

Viewing 15 posts - 34,486 through 34,500 (of 39,903 total)

  • RE: help

    You must have changed a default somewhere. What tasks/connections are in your package? What types of connections are you making?

  • RE: Help with joining views

    If you are selecting all or most of the data from the table, the indexes don't help because a scan will occur. Chcejing fragmentation often can speed this up.

    I...

  • RE: I need to assign a database password

    I'm always wary of putting a hard coded password in the application. better to store it outside, registry, file, something and encrypt that somehow so it can be changed.

    Definately don't...

  • RE: QueryAnalyzer->Tools->Options->Results->Maximum charactaers per column

    Please don't cross post. all forums are covered.

    Answered in other post.

  • RE: Error information - work around provided.

    I've seen this sometimes with strange data coming back, like something corrupts the TDS stream. Can you do a select * from each of the tables, which might narrow down...

  • RE: Rolling Off Data ... Nibbling with ROWCOUNT

    That should work. Be sure you add a WHERE clause based on your criteria.

  • RE: sa Audit Trail

    When you login as sa, thre is no NTUsername, that's when you log in using Windows authentication.

    I agree with AJ, change the pwd and you'll find out, or someone will...

  • RE: "QueryAnalyzer->Tools->Options->Results->Maximum characters per column:"

    You might have to write some ASP or VB code to get it to display. I suspect the textbox thing in QA is limited here for some reason.

  • RE: Backup Problem

    the checkpoint should occur every minute or so. Are you sure of the recovery model? Also, dbcc opentran, there might be an open transaction which is causing it to grow.

  • RE: Which version of SQL Server do I need?

    If your website is for authenticated people in your company, you'd use CALs. If it's the internet and anonymous people, it's per CPU.

  • RE: How to identify passwords in SS

    You can check syslogins for the last change date. This is for any aspect of the login, not just passwords, but in reality, it usually is the password that is...

  • RE: select stmt w/dynamic from clause

    You need an IF statement.

    If x = 1

    select y, z from my table

    else

    select y, z, from table2

    You cannot change the from statement with a case.

  • RE: SQL Profiler

    Interesting, and I thought objectname was broken as a filter. Thanks for the info, scott.

  • RE: Triggers on system tables

    It's highly frowned upon and could cause problems. In SQL Server 7, triggers on system tables were not guarenteed to fire.

    I'd setup a job that runs every hour to look...

  • RE: Named Pipes

    The app might have been an admin on the nondedicated machine and you were not aware of it. Being an admin and named pipes v TCP should not have anything...

Viewing 15 posts - 34,486 through 34,500 (of 39,903 total)