Viewing 15 posts - 7,006 through 7,020 (of 7,466 total)
I ran this on sql2k sp2
use northwind
go
dbcc freeproccache
go
create proc palzdbatest
as
DECLARE @IntVariable INT
DECLARE @SQLString NVARCHAR(500)
DECLARE @ParmDefinition NVARCHAR(500)
SET @SQLString =
N'SELECT * FROM employees...
May 10, 2004 at 12:16 am
helas, with sql7 there is no xp_sqlagent_proxy_account
May 6, 2004 at 9:01 am
how is this working for SQL7.0 sp4 ?
I've seen...
May 3, 2004 at 8:06 am
"DATEADD(mm,-4,GETDATE())" would be preferable because that way, at.ass_stopdate will still be sargeble and it's index (?) might be used
May 3, 2004 at 6:08 am
select year(datetimecolumn) as Year_datetimecolumn
, month(datetimecolumn) as Month_datetimecolumn
, count(*) as Counter
from mytable
group by year(datetimecolumn)
, month(datetimecolumn)
order by Year_datetimecolumn, Month_datetimecolumn
May 3, 2004 at 6:02 am
correct, but what about sqluser-id's and their password ?
Windows-ids can be relinked with this script
SELECT 'if not...
April 30, 2004 at 2:48 am
follow the ms-workaround ?
WORKAROUND
To avoid this problem, do not use the NOLOCK hint or the READ UNCOMITTED transaction isolation level, or do not run...
April 30, 2004 at 12:20 am
- SQL2000 ? (sql7 has more pitfalls)
- If you only want to move user-db, you might consider to use the copy-database-wizard. This will have unavailability of the db at the...
April 30, 2004 at 12:08 am
there is migration-software on the marked. I just cannot recall the providers company-name.
The where present at last years PASS-conference in Seattle.
April 29, 2004 at 11:58 pm
You will have to alter the object-owner !
this may help out :
Select 'print '' object : ' + u.name + '.' + o.name + ''' ' + char(13) + ' go...
April 29, 2004 at 12:35 am
- keep in mind that sql also has to manage rowlayout, nullable columns also have the need for management-place (1 byte per 7 nullable columns). Check "dbcc showcontig" for your...
April 28, 2004 at 12:11 am
Every time sqlserver starts (or starts a db) it will check if data is consistent.
If it detects there were running transactions at...
April 27, 2004 at 11:48 pm
sysdepends may give you the inventory.
sp_refreshview @viewname = 'viewname' may perform what you are looking for
April 27, 2004 at 2:16 pm
- Because your goal is to move the db to a new server and postpone application-adaption, maybe you can consider to move the db's and at the old location only...
April 27, 2004 at 2:08 pm
When reindexing put your recovery model to bulk-logged or your log will grow by the size of the rebuild data..
But don't let this discourage...
April 27, 2004 at 2:02 pm
Viewing 15 posts - 7,006 through 7,020 (of 7,466 total)