Viewing 15 posts - 181 through 195 (of 1,158 total)
EdVassie (11/25/2013)
If you are doing an in-place upgrade your planning should include the scenario of the upgrade failing part-way through - these things can happen.
I thought I'd pretty much said...
November 25, 2013 at 4:46 am
I'd be very, very cautious with this in place upgrade since you performing both OS and SQL.
Ensure all databases are backed up and kept off the server. Also consider...
November 22, 2013 at 4:00 am
Is the tables primary key an identity?
Do you have an inserted date column with associated index?
Can the table be partitioned on a daily basis?
Both having/adding an identity column and an...
November 21, 2013 at 9:45 am
I've used a few in the past. CHECKSUM when I only had to monitor modifications to a few columns. Timestamp is another method.
A trigger could work but I'm...
November 21, 2013 at 9:06 am
_api_ (11/20/2013)
I wonder why this status details wouldn't be stored (and updated) in Distribution database - after all most of replication info and data is there.
The commands are marked as...
November 21, 2013 at 1:59 am
You are right in that you cannot replicate from a logshipped database.
a) You could logship both databases
b) If the dbs could be mirrored and if needed to be readable,...
November 21, 2013 at 1:55 am
You could consider using the MERGE combined with this kind of update.
SELECT CASE WHEN DATEPART(qq, GETDATE()) = 1 THEN 'VALUE'
END
...
November 20, 2013 at 7:16 am
I was clutching at straws a bit, but the only time I could consider using the trial editions in a production environment would be to show a proof of concept...
November 20, 2013 at 6:58 am
I think this is it.
SELECT c.OriginalVendorNumber
, c.InvoiceNumber
, c.InvoiceDate
, c.AbsoluteAmount
...
November 20, 2013 at 1:50 am
Can you replicate the data to a different database and modify the view to access cross-database?
November 20, 2013 at 1:06 am
The only way is to drop and rebuild the publication.
If you can restrict access to the publisher and subscribers, you can drop, rebuild and add the subscribers as @sync_type='none'
or...
November 20, 2013 at 1:05 am
If you replicate views or stored procedures, you are replicating the object definition, not data.
It will display only what is in the local DB (assuming you have all the dependant...
November 19, 2013 at 9:17 am
Junglee_George (11/19/2013)
select IsNull(St.alternateStudyCode, St.studyCode) AS StudyCode,* from Studies St
I hope it is not working because, alternateStudyCode and...
November 19, 2013 at 2:20 am
chris.roddis-ferrari (11/18/2013)
I think the async network io is a red herring. Network cards are full duplex and data transfer rates comparable.
I agree with this, the wait stat is related...
November 19, 2013 at 2:17 am
You could use last years full backup 🙂 provided you have all of the transaction logs since then so it doesn't matter if the latest full backup hasn't completed yet.
You...
November 19, 2013 at 2:14 am
Viewing 15 posts - 181 through 195 (of 1,158 total)