Viewing 15 posts - 226 through 240 (of 2,436 total)
Amazing - yet another new thing that I have learned about SQL !!!
September 2, 2009 at 11:26 am
Where I am at we have 270+ instances mixed about 60/40 at SQL 2005/SQL 2000.
Our plan is to bypass SQL 2008 totally and thenpossibly look SQL 2008 R2 some...
September 2, 2009 at 10:30 am
oops ... did in in 2005 - well varchar(8192) will work - then one has to walk through the text ...
September 1, 2009 at 9:12 am
Sorry 2 Gb is all you can use in SQL Server 2000 Standard
here are some useful links:
http://www.sql-server-performance.com/articles/per/awe_memory_sql2000_p1.aspx
http://searchsqlserver.techtarget.com/generic/0,295582,sid87_gci1157395,00.html
August 31, 2009 at 1:31 pm
As DBAs we generally have 'different' working hours. Lots of nights and weekends - especially for 'production support DBAs. So why would you find it 'odd' to be on SSC...
August 31, 2009 at 12:23 pm
Give this a whirl ...
One of the three following statements or a combination of the two of these statements will work. This depends on whether there are 'newlines', 'carriage...
August 31, 2009 at 12:17 pm
Clarification please ...
You state that you are using Windows Server 2003 Enterprise but only SQL 2000.
Is SQL 2000 'Standard' or 'Enterprise' ?
If it is 'Standard', well, the extra memory does...
August 31, 2009 at 12:01 pm
hmmm ... could it be that there is a transaction log backup that runs DBCC ?
August 26, 2009 at 8:38 am
and just what is the format of the 4 bytes shown ?
August 25, 2009 at 12:08 pm
Try downloading .NET fremawork from MS - and reinstalling.
After that you will have to execute Windows Update to reapply the SPs and security fixes for .NET.
August 21, 2009 at 10:35 am
Try perfroming a 'repair' on .NET 2.0 ...
We have found this to work in some instances.
August 21, 2009 at 8:24 am
Ask your network folks if they changed any routing or firewall rules.
Also, if your network is segmented it may not show all servers. Again of you have multiple V-LANs the...
August 20, 2009 at 10:55 am
I have had good luck with Sybase's PowerDesigner. Below is a link to the evaluation version.
August 20, 2009 at 10:52 am
here is a query I used for the same situation in SQL 2005:
update msdb.dbo.sysdtspackages90
set packagedata=
CAST(
replace(CAST(CAST(packagedata AS varbinary(MAX)) AS varchar(MAX))
,'OLD_SERVERNAME\INSTANCE,PORT#','NEW_SERVERNAME\INSTANCE')
AS varbinary(MAX))
where name like 'SOME_SUBSET_OF_PACKAGE_NAMES'
I believe that it can be modified to...
August 20, 2009 at 9:32 am
yet another way to skin the cat - no sp_executesql
alter proc usp_get
as
begin
declare @sql varchar(100)
select @sql='create view dbo.vw_select as select '+char(39)+'2009-01-01'+Char(39)+' As a'
print @sql
exec (@sql)
end
go
exec usp_get
August 19, 2009 at 11:00 am
Viewing 15 posts - 226 through 240 (of 2,436 total)