Forum Replies Created

Viewing 15 posts - 871 through 885 (of 1,114 total)

  • RE: What is your plan to achieve in Year 2008?

    I would like to improve my spoken & written english knowledge.Also i would like to 'Beef-Up' my T-SQL Knowledge.

  • RE: My Recent EMail

    Thanks Steve,SQLBILL and Loner.

    Steve,

    As you suggested, I have planned to take some classes.If your people know any books to read(not too hard,just simple english words with proper grammar),Kindly refer me...

  • RE: Isnull function

    Create table Emp

    (

    Eno int,

    Ename varchar(50),

    SurName varchar(50) NULL

    )

    Insert into Emp Values ( 1,'AAAA',null)

    (or)

    Insert into Emp(Eno,Ename)values( 1,'AAAA')

    1) Is there any difference between these two statements ?Both can

    ...

  • RE: Isnull function

    SET ANSI_PADDDING OFF

    is it good practise to use "SET ANSI_PADDDING OFF" in production server ?If yes (or)not,How and why?

  • RE: Check if temporary table exists or not?

    My proof read statement is,

    IF OBJECT_ID('DBname.dbo.permanenttablename','U') IS NOT NULL PRINT 'Table Exists' ELSE PRINT 'Table Not Exists'

  • RE: Check if temporary table exists or not?

    Concur...

    2. Same for permanent tables...

    IF OBJECT_ID('dbo.permanenttablename','U') IS NOT NULL PRINT 'Table Exists' ELSE PRINT 'Table Not Exists'

    ...

  • RE: My Recent EMail

    Dear AnandaKumar, (Is that one name or two - Ananda Kumar)

    That is one name.

  • RE: My Recent EMail

    Thanks SQLBILL.

    Also,Kindly answer for the below questions.

    1) How i have formed the sentences ?

    2) How is the elegant of Email?

    3) whether my way of written is understandable format or not.

    4)...

  • RE: which scripting language does sqlservercentral uses ?

    Thanks Steve.

    Jeff,

    If you are not able to see the Forum Title,Kindly see the Top of the Left.

    You can see the title in the title bar of the window.

    I remember,Steve told...

  • RE: Shy Site Promoter

    Congratulations Steve! A right person got the right promotion at right time.

  • RE: Shy Site Promoter

    Congratulation Steve!

  • RE: BTW(By The Way)

    Hi Steve,

    Often you are talking about 'PASS CONFERENCE' or 'SUMMIT....'.

    What does it?

  • RE: Isnull function

    I have also gathered some points about NULL in some websites. It is here.

    1) Null is untyped in SQL, meaning that it is not designated as an integer, character, or...

  • RE: Isnull function

    And,Databases treat NULL values in a special way, depending upon the type of operation that it is used in.

    1) When a NULL value appears as an operand to an...

  • RE: Moved Topic

    Regret.

    I have phrased my question wrongly.Actually i want to ask about an icon which denotes Moved Topic.i.e " _l " symbol under a forum.

Viewing 15 posts - 871 through 885 (of 1,114 total)