Viewing 15 posts - 1 through 15 (of 26 total)
Makes sense- thanks.
January 21, 2021 at 5:32 pm
Yep, it happens every time. Just happened again.
Can you verify it doesn't happen to you? Do you have the same versions of SqlServer and SSMS that I have?
November 30, 2017 at 4:47 pm
There's apparently some kind of time limit on when those changes completely go away after I have close it without saving.
After waiting a few minutes, now the changes have...
November 17, 2017 at 3:12 pm
Haha! I just noticed the paymentID column is a varchar(3) for some reason. Changed that to an it, that fixed it.
June 27, 2016 at 6:56 pm
Ah, I see. I thought a trans log backup just basically copies your entire trans log file. But I guess it actually loops through all the VLFs inside...
June 15, 2016 at 5:20 pm
I'm reading about Tail-Log Backups now-- looks like that's probably what would help out here...
June 15, 2016 at 4:29 pm
GilaMoster, I'm not talking about regular backups. All I'm trying to do right now is get rid of all the unused space in the trans log.
When I do DBCC LOGINFO,...
June 15, 2016 at 4:08 pm
GilaMonster (6/15/2016)
ztoddw (6/15/2016)
June 15, 2016 at 2:48 pm
It shows :
select log_reuse_wait_desc from sys.databases where name = 'Lobby_queue'
LOG_BACKUP
So it still thinks the trans log backup is still happening? I left that backup running last night and it...
June 15, 2016 at 12:31 pm
Thanks y'all... so now I have backed up the transaction log, and it shows in the disk space report that the trans log has 99% space free, but when I...
June 15, 2016 at 12:07 pm
I sort of found an answer- On the Job Step Properties --> Advanced, if you check the box for "Log to table", then once it starts running, you can click...
April 16, 2015 at 1:55 pm
Thanks for the bug report Jeff- it's awesome when folks help me test. Got that fixed. I didn't realize Sql Server had the little quirk with the len...
April 14, 2015 at 11:33 pm
I admit I don't know for sure that it's more efficient- it just seems like your solution was doing more work than it needed to- although I'm not sure since...
April 14, 2015 at 11:51 am
This way is probably more efficient-
declare @STRING varchar(1000);set @STRING='100010111100010001';
select pos=ltrim(str(n))+'-'+ltrim(str(len(sub)-len(ltrim(replace(replace(sub,' ','~'),'0',' ')))+n-1))
from (select n=number, sub=substring(@STRING,number,len(@STRING))
from master.dbo.spt_values where type='P'
and (number between 1 and len(@STRING))) t
where (n=1 or substring(@STRING,n-1,1)<>'0')
and substring(@STRING,n,1)='0'
April 14, 2015 at 9:47 am
LutzM (10/6/2013)
If you know how to use html code to design a bar graph (e.g. [/url] or [/url]), you could expand the html code already in use.
This looks simple-...
October 8, 2013 at 4:10 pm
Viewing 15 posts - 1 through 15 (of 26 total)