Viewing 15 posts - 1,561 through 1,575 (of 1,995 total)
i'm sorry - but some of the recent questions have been a little "open to interpretation" !!!!!
what may work for one situation won't work for another - i can't possibly...
November 24, 2006 at 8:14 am
it's a log in failure or connection failure - usually occurs for us when someone changes their password but is still logged into sql server - when they try and...
November 24, 2006 at 7:28 am
floating point precision (if they are floats) also the numeric specifications between products are different
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...
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
???
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...
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
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...
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...
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...
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.
October 2, 2006 at 10:13 am
you're looking for an rss feed such as the one provided at
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...
September 29, 2006 at 4:28 am
then new primary or the old primary ?
September 29, 2006 at 4:02 am
when you say - can't dump the log - why not ?
September 29, 2006 at 3:54 am
Viewing 15 posts - 1,561 through 1,575 (of 1,995 total)