Forum Replies Created

Viewing 15 posts - 2,251 through 2,265 (of 2,894 total)

  • RE: Fulltext not working while i removed all words from noiseenu.txt

    I would restart Server and repopulate the full-text catalogs. Have you done this?

    Also, are you sure that this is one noise file used?

  • RE: multiply aggregate

    Phil Parkin (8/15/2011)


    BUT, wait untill JC will see your post... [w00t] You will then know that your table is not a table [BigGrin]

    Wow, Jesus monitors this forum too?

    :hehe:

    Joe Celko...

  • RE: Global settings for datetime

    scottichrosaviakosmos (8/15/2011)


    ...

    I want it to make global. so that same time should be shown to all across world.

    ...

    GETUTCDATE() is a function which returns date and time as UTC time (Coordinated...

  • RE: multiply aggregate

    Simple answer to your question is: NO - such aggregate function does not exist. There is a rationale behind it I guess. Such function would easely cause overflow.

    You can try...

  • RE: Global settings for datetime

    GETUTCDATE()

    Is your friend. Then you can use localisation if required...

  • RE: Pliz help this stroed procedure!!

    You can replace your:

    set @nom=(select nom from dbo.mylogin1 where numtel=@numtel)

    With

    select @nom = nom from dbo.mylogin1 where numtel=@numtel

    It will never fail again, however it will hide the fact that your...

  • RE: copy data

    If you allowed to link your servers you can use just insert query

  • RE: Pivot or Case Statement

    Your question does look better now and your query looks fine to me.

    If you post insert script for sample data you have we can see what it will return.

    Meanwhile if...

  • RE: Composite Primary Key

    SriSun (8/11/2011)


    .. Is it a good practice to use composite primary key, rather I can create primary key on date_col and create nonclustered on idno.

    ...

    1. It is a good practice...

  • RE: Windows 2003 and SQL 2008 Even Viewer Query

    Then you can tell your bosses to forget about it as in order to do it in SQLServer you will need to write your own tool yourself (c# or other)...

  • RE: Pivot or Case Statement

    Could you please provide data insert script not an extract as it's useless.

    You can follow the link at the bottom of my signature to find out how the question...

  • RE: Seeking advise on the diff

    Why not to use simple old LEFT JOIN:

    SELECT a.OneColumn

    FROM TableA AS a

    LEFT JOIN TableB AS b ON b.OneColumn = a.OneColumn

    WHERE b.OneColumn IS NULL

    I do assume that there are no rows...

  • RE: Windows 2003 and SQL 2008 Even Viewer Query

    Zeev Kazhdan (8/11/2011)


    Hello techies!

    I was asked if SQL 2008 can obtain a data from Windows 2003 Event Viewer (especially

    Application's Error Level), but from a quick browsing haven't seen any...

  • RE: unpivot help

    dave 92282 (8/11/2011)


    Thanks, I’m not normally a fan of union was advised to stay away where possible as it’s not the best on method with performance. But that said the...

  • RE: Performance implications of using [DBName]..[Tablename]

    Jayanth_Kurup (8/11/2011)


    ...

    So it looks like when the querying objects without the schema name it actually preferred the sys schema object over the object created against the schema defined for this...

Viewing 15 posts - 2,251 through 2,265 (of 2,894 total)