Forum Replies Created

Viewing 15 posts - 49,036 through 49,050 (of 49,566 total)

  • RE: Distinct

    Firstly, don't use select *. It's lazy coding. Get into the habit of explicitly naming the columns in your query, and only returning the columns that you need.

    Second, don't use...

  • RE: Question of the Day for 28 Aug 2006

    EXECUTE Northwind.dbo.sp_who should have worked and printed Surprise.

    Actually not, it has something to do with the name resolution, but any procedure that starts sp_ is first looked for in master,...

  • RE: Divide by zero encountered

    NULLIF takes 2 parameters, returns null if the two equal each other, otherwise it returns the first.

    Hence NULLIF(fld, 0) returns NULL if fld is zero, otherwise it returns fld.

  • RE: Transaction log reading tools

    The dblog virtual function produces nicer output than DBCC Log. Specifically, since it's part of a query, it's easy to filter, group, etc

    SELECT

    *...

  • RE: Data Time format

    Datetimes are not stored in any format in a table. They're stored in a numeric format.

    If you want to display a date in a specific format, then you'll need...

  • RE: Being a Professional

    I don't know about those who are presenting, but I submitted an offer to speak at the conference, which was declined. I got a mail from PASS recently, thanking me...

  • RE: Using BEGIN TRAN...COMMIT TRAN

    Why don't you try it out? You can use the RAISERROR statement to force an error, or intentionally do an update that violates a constraint on the table.

    Be very...

  • RE: Understanding the Algorithms used by SQL Server

    I'd also recomend 'The Guru's guide to SQL Server Architecture and Internals' by Ken Henderson

  • RE: Need Help with Query

    Oops, missed that. Thanks

  • RE: Need Help with Query

    It's messy, inefficient and I'm sure several others will have better solutions, but this does what you want. The big problem is the comma-delimited values in the commission table

  • RE: empty string

    or you can use the datalength function, which can be used on text fields

  • RE: SQL Beginner

    The SQL 2005 books online conain a lot of information for beginners. The sections on create procedure, insert statements, update statements and if - else statements will probably be of most...

  • RE: Insert - Null issues

    Are you maybe trying to do this?

    Select  sum(cast(ISNULL(Hedonic_Value,0) as bigint)) as SumHedonic,  sum(cast(sa_sqft as bigint)) as sa_sqft,

    sa_census_tract, sa_census_block_group, count(*) as totalHomes, 'B' as HouseType

    From ReplyAVM

    Where isnull(sa_sqft, 0)...

  • RE: Automating Procedures to execute

    I would agree on the job, but not on the cursor. From the sounds of things, the updates can be done set-based.

  • RE: MAX() vs. TOP 1 (fastfirstrow) DESC?

    > 3 or 4 times faster (according to your own tests) is not significant difference for you?

    As you said, is 3 ms worth the effort. If it was 3 min vs 1...

Viewing 15 posts - 49,036 through 49,050 (of 49,566 total)