Viewing 15 posts - 1,561 through 1,575 (of 1,993 total)
floating point precision (if they are floats) also the numeric specifications between products are different
MVDBA
November 24, 2006 at 7:26 am
you want the insert with merge command (2005)
merge into mytable
using mytemptable
on mytemptable.id=mytable.id
when matched then
update myfield=mytemptable.newfield
when not matched then...
MVDBA
November 24, 2006 at 7:21 am
you could also pass in the correct parameters for the index to de rebuilt (not the clustered one obviously) rather than reindexing the whole table
???
MVDBA
November 23, 2006 at 8:43 am
can you run the following and send the results back
select @@servername
select serverproperty('machinename')
maybe the machine has been renamed since sql was installed? if so then the 2 vlaues will be...
MVDBA
November 23, 2006 at 8:39 am
you'll need to begin trans and commit trans around the statements.
if you're worried about the locking use read uncommited in your select statements
MVDBA
October 28, 2006 at 10:35 am
declare @server nvarchar(200)
declare @strsql nvarchar(2000)
declare curs1 cursor for select datasource from master..sysservers
open curs1
fetch next from curs1 into @server
while @@fetch_status=0
begin
set @strsql='select * from '+@server+'.master.dbo.sysusers'
--set @strsql=@server+'.master..sp_who2'--proc version
exec @strsql
fetch next from curs1 into...
MVDBA
October 28, 2006 at 10:33 am
i've not heard of Tail log backups before - i think you may be referring to Tee-Log backups (or T-log) which stands for transaction log..... so they are the same...
MVDBA
October 5, 2006 at 6:26 am
select * from syscomments will show you all source code from procs, views, functions etc
or join it on sysobjects
select o.id,o.name,c.text from syscomments c inner join sysobjects o on o.id...
MVDBA
October 5, 2006 at 6:23 am
ssis isn't included in express edition - you need to upgrade to either workgroup, standard or developer edition.
MVDBA
October 2, 2006 at 10:13 am
you're looking for an rss feed such as the one provided at
http://ansuz.sooke.bc.ca/rippy/exchange/
MVDBA
September 29, 2006 at 8:07 am
dump transaction has been deprecated in 2005 use backup log (apparently backup log with truncate_only has also been deprecated)-
but if the primary in the mirror has not synchronised with...
MVDBA
September 29, 2006 at 4:28 am
then new primary or the old primary ?
MVDBA
September 29, 2006 at 4:02 am
when you say - can't dump the log - why not ?
MVDBA
September 29, 2006 at 3:54 am
alter database x set restricted_user
should stop anyone who isn't dbo dbcreator or sysadmin getting in the database
MVDBA
September 28, 2006 at 9:22 am
in sql2005 you have to add a job to the maintenance plan for "delete maintenance plan files" - this can be performed before or after the backup itself (i recommend...
MVDBA
September 28, 2006 at 7:45 am
Viewing 15 posts - 1,561 through 1,575 (of 1,993 total)