Forum Replies Created

Viewing 15 posts - 256 through 270 (of 389 total)

  • RE: DB Backups taking more time

    ravisamigo (7/16/2012)


    Hi All,

    We have configured 2 jobs for db full backups and both jobs having the same number of databases

    [ i.e JOB 1 - Total size of all...

  • RE: Full Text Search Indexing For apostrophe

    deepzzzz (7/16/2012)


    [font="Arial"]Its showing both Application with IDs 3 & 4. I want exact match for apostrophe.[/font]

    Hi deepzzzz,

    It is always better to provide sample INSERT statements and required output to avoid...

  • RE: Today's Random Word!

    SQLRNNR (7/16/2012)


    incorporate

    addition

  • RE: Full Text Search Indexing For apostrophe

    deepzzzz (7/16/2012)


    [font="Arial"]Its showing both Application with IDs 3 & 4. I want exact match for apostrophe.[/font]

    Little correction in Subbareddy code will work.

    DECLARE @T1 TABLE(ID INT,NAME VARCHAR(30))

    INSERT INTO @T1(ID,NAME)

    SELECT 1,'AA'

    UNION...

  • RE: Deleting Duplicate Records Made Easy in 2005

    bitbucket-25253 (7/16/2012)


    rhythmk (7/16/2012)


    weblorquins (7/16/2012)


    Delete From TableName

    Where ID Not IN

    {

    Select MAX(ID) From TableName

    Group By Col1, Col2...

    }

    By The help of Table name useing ID and the Group By we can delete the...

  • RE: Cast in Varchar with different options

    honza.mf (7/16/2012)


    rhythmk (7/16/2012)


    kupy (7/16/2012)


    honza.mf (7/16/2012)


    Nice one.

    But it's very hard to count the chars early in the morning. Luckily the string in b is not 31 or 32 characters long.

    +1

    I copied...

  • RE: Deleting Duplicate Records Made Easy in 2005

    weblorquins (7/16/2012)


    Delete From TableName

    Where ID Not IN

    {

    Select MAX(ID) From TableName

    Group By Col1, Col2...

    }

    By The help of Table name useing ID and the Group By we can delete the duplicate record...

  • RE: Cast in Varchar with different options

    kupy (7/16/2012)


    honza.mf (7/16/2012)


    Nice one.

    But it's very hard to count the chars early in the morning. Luckily the string in b is not 31 or 32 characters long.

    +1

    I copied the strings...

  • RE: Transact Newb - What am I doing wrong?

    rhythmk (7/16/2012)


    rob.vig (7/15/2012)


    Can someone help me? I am getting this error:

    Msg 102, Level 15, State 1, Procedure sp_Create_Accounts, Line 23

    Incorrect syntax near '@Status'.

    Msg 102, Level 15, State 1, Procedure sp_Create_Accounts,...

  • RE: Transact Newb - What am I doing wrong?

    rob.vig (7/15/2012)


    Can someone help me? I am getting this error:

    Msg 102, Level 15, State 1, Procedure sp_Create_Accounts, Line 23

    Incorrect syntax near '@Status'.

    Msg 102, Level 15, State 1, Procedure sp_Create_Accounts, Line...

  • RE: Scalar user defined execution fails - Invalid object name 'fnContactFullName'.

    Smash125 (7/15/2012)


    Have created Scalar User Defined Function and when i try to execute the function it fails.What could be the problem

    Please find the function as below.

    CREATE FUNCTION fnContactFullName(@ID INT)

    RETURNS NVARCHAR(100)

    AS

    BEGIN

    DECLARE...

  • RE: Today's Random Word!

    Revenant (7/13/2012)


    capn.hector (7/13/2012)


    JAZZ Master (7/13/2012)


    SQLRNNR (7/13/2012)


    down

    town

    Funky

    monkey

    Homosapiens

  • RE: comparing string column with GetDate()

    shamshad.ali (7/14/2012)


    Hi,

    I have following table:

    USE [Test_Shamshad]

    GO

    /****** Object: Table [dbo].[mTable1] Script Date: 07/14/2012 13:26:52 ******/

    SET ANSI_NULLS ON

    GO

    SET QUOTED_IDENTIFIER ON

    GO

    SET ANSI_PADDING ON

    GO

    CREATE TABLE [dbo].[mTable1](

    [Id] [int] IDENTITY(1,1) NOT NULL,

    [Name]...

  • RE: Woohoo MCTS passed

    Congrats....its party time now 🙂

  • RE: Derterministic & non-deterministic result

    ankit.singh484 (7/12/2012)


    Can any one describe that what exactly is a Deterministic & non-deterministic result?

    Hi Ankit,

    Have a look on below link.

    http://msdn.microsoft.com/en-us/library/ms178091.aspx

Viewing 15 posts - 256 through 270 (of 389 total)