Forum Replies Created

Viewing 15 posts - 12,046 through 12,060 (of 18,923 total)

  • RE: Sql server 2005 express tools - Profiler

    Ya learned that the hard way...

     

    Installed the full evaluation version over express but the profiler didn't get installed.  Tried uninstalling the tools and reinstalling but that failed too. So I uninstalled...

  • RE: Constraint question

    Sorry to kill your groove, But you either to that check before the insert in a stored proc or in a trigger.  The simple constraint checks just can't handle that...

  • RE: Row count for all my tables

    I'm certain it queries sysobjects but I never saw the query so I'd just be speculating at this point...  But as long a syour query works now

  • RE: Row count for all my tables

    Couldn't find anything out about that... but that was the only thing I could see that may have a chance of screwing something up.

  • RE: Row Number

    I'm saying that when you're presenting the data like in a asp report.  You can manually add that counter with a variable.  Isn't this option available to you?

  • RE: Checking for Indexes on Temp table

    Did you check in tempdb.dbo.sysindexes?

  • RE: Row count for all my tables

    hmm, maybe this...

    SELECT
    [TableName] = so.name,
    [Table id]=so.id,

    [RowCount]...

  • RE: Row Number

    Why can't you simply add the counter in the application when displaying the data?

  • RE: TSQL PRoblm

    Damn, I'm still to green to understand that joke .

  • RE: TSQL PRoblm

    How about someone provides some oracle solutions while I come up with the Access 2K version?

  • RE: Utility executables are installed where?

    This is for the evaluation version of 2005... I assume they'll be there too in the "real" version.

    This is the management studio link.

    "C:\Program Files\Microsoft SQL Server\90\Tools\Binn\VSShell\Common7\IDE\SqlWb.exe"

  • RE: TSQL PRoblm

    That'll take too long.. The longest threads here have gone far in the 100s so I got other stuff to do .

  • RE: Start date/time of currently running jobs

    I never came up with this problem.  What query have you come up with and what is the problem you are encountering?

  • RE: TSQL PRoblm

    The only problem with that solution is that if a number is written like this abc012, your query will return abc12.

     

    That's why I wrote mine that way......

  • RE: Subquery on iinsert

    Select dbo.FunctionImageNo(@CustomerEmail, @CapNo), Cola from ...

     

    However this would result in a cursor like process.  In this case...

Viewing 15 posts - 12,046 through 12,060 (of 18,923 total)