Viewing 15 posts - 20,626 through 20,640 (of 26,490 total)
Adam Machanic (6/3/2009)
... (the running period progresses as you move through periods, based on some logic) ...
Could you explain this in a little more detail? I am curious what...
June 3, 2009 at 7:57 pm
I subscribe to SQL Server Magazine. I haven't read the article in depth, but a quick scan shows why the cursor-based solution works better than the set-based solution. ...
June 3, 2009 at 4:24 pm
don_goodman (6/2/2009)
June 2, 2009 at 4:17 pm
I have to agree with Steve. Perhaps a disclaimer of some sort should be added to top of each article stating the content of the article is the opinion...
June 2, 2009 at 3:56 pm
What is the value of the is_copy_only column?
June 2, 2009 at 3:30 pm
Verify the recovery model of the database. Also, run this query: select * from msdb.dbo.backupset where backup_start_date > '20090602'
June 2, 2009 at 2:45 pm
Steve Jones - Editor (6/2/2009)
June 2, 2009 at 2:39 pm
Bob Shaw (6/2/2009)
June 2, 2009 at 2:20 pm
sqlguy (6/2/2009)
Regarding backup question when I backup DMK and Certificate and regenerate the symmetric key by using the following scripts the column I was...
June 2, 2009 at 2:02 pm
Regardless of recovery model, all updates, inserts, and deletes are written first to the transaction log. Which recovery model you use should be based on how much data loss...
June 2, 2009 at 1:05 pm
Luke L (6/2/2009)
jcrawf02 (6/2/2009)
I have a bridge to sell them . . . 😉
Really? I've always wanted to own a bridge, that way I could charges tolls.
But seriously, I...
June 2, 2009 at 12:59 pm
Yes, you will have to create the database role in each existing user database. You can also create the role in the model database, which should then make that...
June 2, 2009 at 11:46 am
No problem. I just thought I might have missed something. Glad to hear that this works for you.
June 2, 2009 at 11:37 am
Steve Jones - Editor (6/2/2009)
Apparently the debate of the article has spilled onto Twitter where I am now receiving complaints.Fun.
Would it be possible for you to provide more info? ...
June 2, 2009 at 11:36 am
I get 4 records back based on your sample data. Please see the code below and let me know what I missed.
CREATE TABLE dbo.Cust ( CID INT IDENTITY(1,1) PRIMARY...
June 2, 2009 at 10:40 am
Viewing 15 posts - 20,626 through 20,640 (of 26,490 total)