Forum Replies Created

Viewing 15 posts - 16 through 30 (of 92 total)

  • RE: @@servername

    I just renamed three of my servers, since their SQL server names were different from the windows server names. You have to restart the SQL server for the changes to...

  • RE: Optimal Pivot Query

    Thanks to all.I am choosing Sachin's solution that was better than what I had come up with.

  • RE: Estimating SQL Server 7/2000 table sizes

    If you have Kalen Delaney Inside SQL book there are some scripts in chapter 8 to estimate table sizes.

  • RE: Allow Access only from Certain Applications

    What you have described used to be a big problem at our site too, where in the past users were each user had an account on the SQL server too,...

  • RE: View SQL Agent Jobs Without the SA Role

     Make the user member of "TargetServerRole" in msdb and that should do it.

  • RE: LINK Servers in Mix Mode giving Error 18452

    Munzer:

     

     AFAIK, Remote server is used to run remote stored procedures only and these are only for backward compatibility. Linked servers are a superset of remote servers and can do remote...

  • RE: table design

    I am not familiar with any correlation between number of columns and performance (assuming the design is normalized),

    how ever keep in mind that the total row length for each row...

  • RE: problems at freeing up disk space

    sp_spaceused 'tablename' is known to report incorrect size (almost seems by design). More precise way is to use sp_spaceused 'table', true. This is especialy more important when you had just...

  • RE: PAGIOLATCH_SH problem.

    I have seen my share of PAGIOLATCH_SH. Without getting into the details, this in essence is an indication of wait for disk resources to complete certain data transfer to...

  • RE: Question about the size and growth of tempdb!

    Run a perfmon job to monitor the tempdb growth. That would atleast tell you what time the growth is accelerating.  Then you might schedule a sp_who or something of sorts...

  • RE: Casting Time String

    My question was regarding casting / converting

    20040503 83811 into the format of

    2004-05-03 08:38:11.000

    The solution in my mail with CAST works. I am looking for a better way !

  • RE: xp_cmdshell sql2k w/t sp3

     If it is not working now, you have to explain where it is not working. Like,

     what is it that you are trying to do with xp_cmdshell (is it BCP,...

  • RE: Sql 2000 suddenly stopped backing up databases!

    Are the jobs and Schedule for the job "both" enabled?

  • RE: xp_cmdshell sql2k w/t sp3

    1. A regular domain user account should suffice.

    2. This account should have "logon as a batch job" right. Besides it should have SQL Server access and all other permissions that...

  • RE: Simple recovery?

    Simple recovery model still has to log the entire transaction, just like full recovery model. The only difference is that with the simple recovery once the transaction is committed, it...

Viewing 15 posts - 16 through 30 (of 92 total)