Forum Replies Created

Viewing 15 posts - 31 through 45 (of 153 total)

  • RE: Problem in connecting remote server

    so..u r not able to find sql server of webserver on ur laptop SSMS network servers right?

    Yeah... nor i m able to find it in server list for sql...

    "Don't limit your challenges, challenge your limits"

  • RE: Problem in connecting remote server

    No, i m not.

    If i could able to get my web server on my Network server list, then i think there wont be any problem... 😉

    "Don't limit your challenges, challenge your limits"

  • RE: Which certification?

    Hey jocampo, r u going for certification for 2008 or going to upgrade your 2005 certificate?

    "Don't limit your challenges, challenge your limits"

  • RE: Which certification?

    Hi Melton, Congratulations for your success. 🙂

    The link which you have provided here is very useful. Thanks for that.

    I am in some what similar situation as you. I also didn't...

    "Don't limit your challenges, challenge your limits"

  • RE: Creating temp table in Batch file

    Sorry, but i couldnt get your problme clearly.

    Though, as per i understood, you have one batch file, say mybat.bat on c:\, which will give list of dirs. Now, you are...

    "Don't limit your challenges, challenge your limits"

  • RE: help on trigger creation

    Have a look at this,

    http://www.experts-exchange.com/Other/Math_Science/Q_24368714.html

    "Don't limit your challenges, challenge your limits"

  • RE: Showing all week data irrespective of a week's data existing or not in the table.

    Here is some basic work,

    create table #weekData (date datetime, sname varchar(5), price int)

    insert into #weekData

    select '06-01-2008', 'A', 1 union all

    select '06-01-2008', 'B', 2 union all

    select '06-01-2008', 'C', 3 union all

    select...

    "Don't limit your challenges, challenge your limits"

  • RE: Character Count from a Given String

    Will this work?

    Declare @Text1 Varchar(max)

    Set @Text1 ='Test Message'

    select len(@text1)+(LEN(@text1) - LEN(REPLACE(@text1, 'e', '')))+(LEN(@text1) - LEN(REPLACE(@text1, 'a', '')))

    "Don't limit your challenges, challenge your limits"

  • RE: Fastest way to seacrh a non-indexed table?

    Hi,

    can u give the definition of your table and supposed query to read the table.

    Though, for quick view, you can replace your inner query (if there is any) with...

    "Don't limit your challenges, challenge your limits"

  • RE: Set length of fields in view

    Hi,

    some more specification will help to better understand the problem.

    "Don't limit your challenges, challenge your limits"

  • RE: Query is performing slow when sorted on datetime column

    Hi musab, it's ok.

    Actually, i m not in favor of indexing on datetime filed... i would rather change it at design time only. Though scenario like urs also needs...

    "Don't limit your challenges, challenge your limits"

  • RE: Query is performing slow when sorted on datetime column

    Then try to change your indexing from datetime to int.. as desc in my last reply and suggested by Grant Fritchey.

    "Don't limit your challenges, challenge your limits"

  • RE: Recordset destination in SQL Server 2005

    Provide some piece of code. that would be better to understand the problem...

    "Don't limit your challenges, challenge your limits"

  • RE: problem with query in CTE

    Can you be some more specific? there seems a lot may questions..

    if you can provide your desired CTE code with sample output then it would be better...

    "Don't limit your challenges, challenge your limits"

  • RE: Finding Tables Used on 1000 SP

    Is "sys.sql_modules" the alternative for "sysdepends" .

    No, both, sys.sysdepends and sys.sql_modules, have different purpose in sql server.

    Actually, sys.sysdepends is still there in 2K5 and 2K8 for backward compatibility only. 2k5...

    "Don't limit your challenges, challenge your limits"

Viewing 15 posts - 31 through 45 (of 153 total)