Forum Replies Created

Viewing 15 posts - 9,391 through 9,405 (of 9,643 total)

  • RE: The General

    Hey how many people here are really experts in SQL Server? I learn something new everytime I come here. The same can be said of any programming or...

  • RE: Optimizing data calculation inside SP

    a_mail.address (10/6/2007)


    Thank you Jeff,

    No, RequestDate and RequestTime are not VARCHAR, just SMALLDATTIME.

    They are seperated because RequestTime and RequestDate were just some symbolic names to make my query's structure clear. In...

  • RE: Current Order Date and Average Count of Orders for Three Prior Days

    I had a solution I was going to post but Jeff's was faster by magnitudes. I'd go with his solution.

  • RE: Multiple Counts in a Row

    ckmoied (10/8/2007)


    Thank you ALZDBA

    Actually your solution is similar to

    select Facility1 as [Facility 1]

    ,(select count(*) FROM MyTable WHERE Cond1) as [First Condition]

    ,(select count(*) FROM MyTable WHERE Cond2) as [Second...

  • RE: Unable to connect to sql server 2005 express

    SQL Server Express does not allow remote connections by default and when you connect using ServerName\InstanceName it assumes you are attempting to connect remotely. If you use localhost\InstanceName you...

  • RE: NULL Equals NULL?

    James,

    This question should really be posted in the Development Forum, not in the discussion forum for an article about nulls. You will likely get more responses there.

    As far as...

  • RE: NULL Equals NULL?

    Jereme,

    I am pretty sure using Case or Coalesce in the select list will not change the indexes used by the Optimizer, but using a case or function against a column...

  • RE: NULL Equals NULL?

    sjwegg (10/5/2007)


    Thanks for the info - some of the NULL fog is beginning to lift. Any hints as how to concatenate (MS SQL) a string that has some null...

  • RE: Secure part of table

    When you are using Integrated Security from an ASP.NET Web application the application connects to the SQL Server using the IIS App Pool user (WEBGROUP), the SQL Server has no...

  • RE: Replication upgrade strategy: 2000 sp3 to 2005

    I can say that I have merge replication setup between 2005 and 2000. This was done at home for personal reasons, not in a "must work" production environment. ...

  • RE: Replication component.help me out

    What edition of SQL Server 2005 are you running (Enterprise, Standard, Workgroup, Express)?

  • RE: Connection pool error

    What is the specific error you are getting?

  • RE: SQL Server 2005 Backup Maintenance Plan failing

    Steve is correct in saying that backing up to a network drive is very fussy. I was doing this in my last job and found that once a backup...

  • RE: select query with criterial in multi column

    Frances L (10/4/2007)


    select [ALName] +'--' +[AFName] +'--' +[APhone] +'--' +[***] +'--' +[AAddress] as [Name] ,[***] from UserDataEntry.GeneralInfo where UserDataEntry.GeneralInfo.[Name] like '%abc%' ORDER BY ALName

    Invalid column name.

    and I...

  • RE: How to LOCK a table for INSERT and UPDATE for duration of TRANSACTION?

    Tim Chapman (10/2/2007)


    Hi Scott

    Thanks for the reply.

    And thanks for the last advice Michael.

    I believe I have resolved the issue, in theory at least as it hasn't been tested yet.

    The main...

Viewing 15 posts - 9,391 through 9,405 (of 9,643 total)