Forum Replies Created

Viewing 15 posts - 706 through 720 (of 2,469 total)

  • RE: Must Knows of SQL server

    Oh I'm one of those "all work and no play" types...dull as ditchwater...must start setting aside some playtime now & then...

    ps:The problem is I...

  • RE: Variable as table name

    Glad to have helped!

  • RE: Poll #2

    #1 most definitely cannot be topped for "coolness"...It would be a "dream come true" for many of us I think!

    #2 - I'd rather starve...

  • RE: Must Knows of SQL server

    This is interesting...I saw the word "programming" in the original post and responded to it as a developer...Steve rounded it off with admin tasks..guess I missed the most important thing...

  • RE: Variable as table name

    You could do something like this...

    declare @tableName as varchar(100)
    set @tableName = (select top 1 name from sysobjects where name like 'table_%'
    order by crdate desc)
    exec('select * from ' + @tableName)
    
  • RE: Using FROM @variable in SELECT statement...

    well - I did think of that first and discarded it only because the result set isn't neatly tabulated...

  • RE: inner join 2 tables ON charindex

    hmm - jumping into this post only to see if anyone will have a solution that doesn't involve redesigning the tables correctly...

    Lowell - do you have time to elaborate on...

  • RE: Error should not be return....

    Yikes - maybe it's an epidemic!

    I've seen 2 similar posts in as many days with the same requirement! Vishal - one of these...

  • RE: More Life Hacks

    I want to focus on the "candy jar" in this response for I have long been puzzled by the number of people that can't keep away from its' lures...what is...

  • RE: Using FROM @variable in SELECT statement...

    Man, Ten - serves me jolly well right for not reading something through fully -

    Thanks for coming to my rescue!

  • RE: Using FROM @variable in SELECT statement...

    I'd saved the following "use of undocumented stored procedure" a long time back and unfortunately did not save the site link so cannot give credit where it's due...

  • RE: Must Knows of SQL server

    Well - here's my list of what I would consider the "basics":

    1) Normalization & Relationships

    2) Understanding Indexes

    3) Defaults, constraints, Rules etc.

    4) Data types

    5) Creating tables, views, stored procedures & triggers

    6)...

  • RE: Store procedure & fetching

    Ken Henderson's 'The Guru's Guide to SQL Server Stored Procedures, XML and HTML'

  • RE: HOW TO CHECK EMPTY TABLE

    I'm not sure I understand this at all but it seems to me that you want to know if your "exec(@query)" has returned any rows or not...if this is correct,...

  • RE: The Life Hackers

    ...if it comes to that, so's this site - an interruption ie...

    I find that the ONLY thing that works FOR not letting the...

Viewing 15 posts - 706 through 720 (of 2,469 total)