Forum Replies Created

Viewing 15 posts - 48,031 through 48,045 (of 59,064 total)

  • RE: CustomRollupColumn and aggregates

    You'd get better help quicker if you'd follow the methods in the article in the link in my signature below... 😉

  • RE: NEED HELP in CREATING NEW DATABASE

    cuteprabakar (9/27/2008)


    Dear All, I need help TO design DB that will contain the following tables. I am using ASP in the frontend

    USERS

    [userid] [int] NOT NULL,

    [password] [int] NOT NULL,

    [Fullname] [nvarchar] (50)...

  • RE: 'Your Response' bar could use more detail

    Not sure if it's possible, but it would also be really cool if we could have discussions on SQL Server about articles not on SQL Server. In other words,...

  • RE: Outakes-please eliminate

    Keller (9/28/2008)


    Please don't ever eliminate the outtakes. "The human side of Steve Jones" is my favorite part of every editorial! 🙂 (Besides the valuable content, of course!)

    I'll...

  • RE: cursor

    The OP must like porkchops...

  • RE: array in sql server

    Not sure what you mean, but if you want to pass an array to SQL, then the following article will help... covers passing of 1, 2, and 3 dimensional arrays...

    http://www.sqlservercentral.com/articles/T-SQL/63003/

  • RE: Issue with stored procedure...

    Matt Miller (9/27/2008)


    Jeff Moden (9/27/2008)


    Heh... thanks for posting your solution. Sometimes the problem just boils down to "must look eye." 🙂

    Any more references like these and you're going...

  • RE: Use a database if exist

    Matt Miller (9/27/2008)


    There's always TRY/CATCH, too.

    Yeah, I know... but I just can't bring myself to programming by exception. I'd rather know the correct answer up front and take...

  • RE: Update with multiple conditions - Help needed

    You bet, Neela.

  • RE: table names

    I'm not sure who gave you the requirements on these file names, but the yyyymm format will serve you much better and for much longer.

  • RE: Help on Dups

    salvysmith08 (9/24/2008)


    ...if you can show me how to dynamically add column GRP on every dynamic table then that would great.

    Old gaming trick... when you can't move, change color... Temp Table...

  • RE: Use a database if exist

    sivavardhan (9/26/2008)


    Use the below script to find whether the database is there or not in a server

    if exists

    (select name from master..sysdatabases where name like '%abc%')

    Begin

    ...

  • RE: Use a database if exist

    vyas (9/24/2008)


    SET QUOTED_IDENTIFIER OFF

    IF EXISTS(select * FROM master..sysdatabases where [name] ='pubs')

    begin

    use pubs

    ...

  • RE: Formatting...date output

    Stuff it...:P seriously... the STUFF solution that Chris Morris posted will do the trick just fine.

  • RE: Issue with stored procedure...

    Heh... thanks for posting your solution. Sometimes the problem just boils down to "must look eye." 🙂

Viewing 15 posts - 48,031 through 48,045 (of 59,064 total)