Viewing 15 posts - 1,261 through 1,275 (of 1,409 total)
Did you also apply SP2 for your client tools on the workstation?
Do you get the same error if you work directly on the server instead of connecting through a workstation?
November 20, 2008 at 3:49 am
I'm not sure but I think it will generate an overhead similar to Windows Performance Monitor. But it can also depend on the number of alerts that are generated.
November 20, 2008 at 3:36 am
You can also copy the table to another database (or with another name within the database). That will save you time if you have to roll back. The copy of...
November 20, 2008 at 3:29 am
You should have created a baseline (by use of counters) for you servers and database. By checking periodically the workload on the server you can notice if everything is working...
November 11, 2008 at 1:10 am
1976 (10/29/2008)
Hi, please note there is a grouping function you should use to check whether the row is a total, not isnull function.
And I keep on learning new stuff 😉
October 29, 2008 at 7:45 am
The solution Seth has provided works fine. You can alter it a bit by moving the CASE from 'Colorder' to the ORDER BY if you don't want to see this...
October 29, 2008 at 5:31 am
smunson (10/23/2008)
...the meaning of the value in the UNITS field has changed...
Hi Steve,
Thanks for pointing that out. But I created this sample to only simulate my data. The UNITS value...
October 23, 2008 at 11:35 pm
Hi Anzio,
I have work out your solution. Maybe others can benefit from this code.
As you allready mentioned, this solution is more generic. The TALLY table now only contains the number...
October 23, 2008 at 6:05 am
AnzioBake (10/23/2008)
It seems I can not post code to the site, I wanted to post a more generic solution
Hi Anzio,
Allthough the provided solution fits my current needs, I'm interested in...
October 23, 2008 at 4:21 am
Thanks Mark, it works like a charm.
I knew a TALLY table could bring me the solution 😀
October 22, 2008 at 4:09 am
What about this approach...
- create and (re-)fill a table with your data using the scheduled job
- link the Excel-sheet with the correct template to the table
- (automatically) refresh the data...
October 21, 2008 at 3:03 am
Install the SQL-2005 Workstation components and be sure to include the Management Tools. SQL Profiler is part of this.
October 21, 2008 at 2:46 am
To correctly let SQL 'know' and display the changed servername you have to run the following code to update the system metadata (sys.servers and @@ServerName):
sp_dropserver {old_name}
GO
sp_addserver {new_name}, local
GO
See the article...
October 14, 2008 at 6:15 am
I agree with Barry. Just create a trace, to only select the textdata of statements (SP and T-SQL). Filter this on the databasename and "%TabelName% %ColumnName%" and you only get...
October 14, 2008 at 2:21 am
Yes, you can change the name of a server running SQL Server. I did it last month regularly when setting up a new development environment. Every time without any issue....
October 14, 2008 at 2:14 am
Viewing 15 posts - 1,261 through 1,275 (of 1,409 total)