Forum Replies Created

Viewing 15 posts - 961 through 975 (of 1,065 total)

  • RE: backup to non-default location

    This may be a permissions issue.

    Make sure that the SQL Server startup account has "Full Control" permission to the drives you want to backup to.

  • RE: displaying decimal values in QA

    SQL Server is doing integer division, as it has correctly guessed that 1000 and 34 are integers.

    If you force one of the values to be decimal, SQL Server will...

  • RE: How to get sequence number?

    This may not be particularly efficient, especially if the table is large, but try this:-

    select (select count(*) from names n2 where n2.name <= n1.name) as SeqNo,name from names n1 order...

  • RE: SQL Perf Counters Lost

    If you have any monitoring software (e.g. BMC Patrol) that hooks into the performance counters, then they have to be shut down as well before restarting SQL Server.

  • RE: SQL Perf Counters Lost

    This could be due to a known issue with SP3.

    If Perfmon is active on the machine running SQL Server at the time the SQL Service is started, you lose the...

  • RE: Distributed Query

    It's probably easier to use an Alias, rather than the real server name.

    If you set up a server alias (using the Client Network Utility) called X, you can write your...

  • RE: monitor

    If SQL Server is set to 'Dynamically' manage the memory, then the fact that it is using 90% of the memory shouldn't be a problem, as SQL Server will release...

  • RE: Converting a char to a smalldatetime

    Unfortunately, in some locales Franks solution will give an error when you reach the 13th of the month, as SQL Server may interpret the date as dd.mm.yyyy or mm.dd.yyyy, depending...

  • RE: CASE with Numbers in a VARCHAR field...

    SQL Server has to decide what the data type of your [Production Ratio] column should be.

    To do this, it looks at all the possible data types in your case...

  • RE: Network libraries TCP/IP Named Pipes

    Shah_a

    None of our servers have named pipes enabled, and we have no problem with failover.

  • RE: Network libraries TCP/IP Named Pipes

    The error was after a SQL2K upgrade to SP3.

  • RE: Network libraries TCP/IP Named Pipes

    Had a similar problem recently after an SP3 upgrade (SKL2K Active/Active cluster).

    With Named Pipes installed, the automatic TCP/IP port detection stopped working, and the only way to connect using TCP/IP...

  • RE: Profiler Filter not working

    I have noticed that SQL Profiler filters seem to be case sensitive. Check to see if your filter exactly matches the EXEC being submitted by your dev guy.

  • RE: Error 1101

    You need to increase the size of your 'tempdb' database.

    Either increase the size manually via Enterprise Manager, or check the box to allow Auto Grow.

  • RE: stored procedure syntax problem

    You forgot the 'END' to go with the 'ELSE BEGIN' line

Viewing 15 posts - 961 through 975 (of 1,065 total)