Forum Replies Created

Viewing 15 posts - 4,651 through 4,665 (of 7,502 total)

  • RE: Querying a Partitioned table is Super Slow

    just my 2 ct.

    I've read somewhere (cannot recall where, but I guess it was in one of Jeff Modens replies) that sqlserver may also experience problems when using between with...

  • RE: Restoring Across Servers

    - apparentley you are using SSMS to try to restore the dbs.

    It will use the connected instances service account authority to query the backup locations.

    With sql2005 that access is restricted...

  • RE: sp_import_errorlog

    juanfcoy (8/21/2008)


    ...Although, a tool I have been using to read/query SQL Logs and all other relevant OS logs is Microsoft's Log Parser 2.x. ....

    Indeed, but some people prefer using...

  • RE: Trigger on COLUMN rename

    - another reason why it is not a good idea to apply changes without proper inventory and preparation.

    You can off course aways generate and execute the sp_refreshview yourself ...

    e.g.

    Declare @ColName...

  • RE: Why to backup on seperate folders?

    the last step of your backup jobs are performing xcopy dos commands to the appropriate safezone.

    Because a logbackup may get started while a full backup job is running, that might...

  • RE: Whole servers in single user mode after build install

    investigate the \hotfix folder for messages. I know this is a struggle, but you'll find what went wrong.

    - double check your network guy is "sysadmin" for your sqlserver instance(s) as...

  • RE: Why to backup on seperate folders?

    another reason to have the backup files in another folder may be your "copy to safezone" software.

    In the past, some of these used to put a folder-lock when they were...

  • RE: SQL Job failing because of Job owner

    Can you provide sqlserver version info (including buildnumber / sp / CU )

    With sql2000 there is een issue when your sqlserver service account is not member of the local admins...

  • RE: sp_import_errorlog

    Nice proc.

    In SQL2005 access to the errorlog are restriced.

    Because some of my developers "realy" needed errorlog info, I've come up with this alternative.

    I just import the errorlog using a...

  • RE: Dynamic SQL, conversion problem between varchar and money datatypes

    If this is a one shot conversion or operation, you may want to add a computed column to the table

    alter table [yourtable] add CompCol_TheSum as (isnull(colA,0) + isnull(colB,0) + isnull(colC,0))

  • RE: Date Format

    This would be one of the typical cases where a CLR function may help out.

    And chances are it will outperform any tsql solution to do the same check/transform.

    First have a...

  • RE: TO find records from different tables through stored procedure

    just my 2 ct.

    Maybe this little thing can get you on track.

    http://www.sqlservercentral.com/scripts/Miscellaneous/31808/

  • RE: Shirnk .Ldf File

    I urge you to read BOL or Gails article.

    This is a question that returns very frequent in the forum(s).

    As always I'll provide the script from MS. Don't just run it,...

  • RE: Table partitioning

    Is it possible to partition tables in a database??If so will it help in improving the performance???

    partitioning ?

    - Think parallel IO

    - limited scan (partition scan) if needed

    - alligned indexes (i.e....

  • RE: The Top Ten Reasons to Attend the PASS Summit 2008

    GilaMonster (8/14/2008)


    If the guy wants it to be a party, then that's what it will be to him.

    Indeed, but that also goes for a "regular" course.

    How many times did one...

Viewing 15 posts - 4,651 through 4,665 (of 7,502 total)