Viewing 15 posts - 11,311 through 11,325 (of 26,486 total)
Since updates could occur on either table, I'd almost say that peer to peer replication between the two tables would be a good solution.
Having the stored procedure on each database...
June 14, 2012 at 11:09 am
If this is what your code looks like:
SET NOCOUNT ON
DECLARE @hr INT
DECLARE @fso INT
DECLARE @drive CHAR(1)
DECLARE @odrive INT
DECLARE @TotalSize VARCHAR(20)
DECLARE @MB NUMERIC;
SET @MB = 1048576
CREATE TABLE #drives (
drive CHAR(1) PRIMARY...
June 14, 2012 at 11:00 am
Here is some code to look over and run. Any questions (and there should be if you don't understand anything), let us know.
DECLARE @ThisDate DATETIME;
SET @ThisDate = '20120613';
SELECT
...
June 14, 2012 at 10:55 am
GO is a batch separator used in SSMS (and can actually be changed), it isn't a T-SQL command or statement.
June 14, 2012 at 10:37 am
Also, make sure you aren't using it for production work. If you are going to do development, I'd purchase the Developer Edition for each developer.
June 14, 2012 at 10:17 am
There are also a lot of configuration settings that can be set by the DBA in Oracle. Knowing what these settings do and how the interact with each other...
June 14, 2012 at 10:01 am
isuckatsql (6/12/2012)
SQL Server Execution Times:
...
June 14, 2012 at 9:45 am
For those of you who haven't seen it yet, Fantasy Football 2012.
June 14, 2012 at 9:34 am
As the returning Champion from last year (and not necessarily expecting a repeat), I am eager to go again!
June 14, 2012 at 9:32 am
A full backup only backs up enough of the transaction log to ensure a consistent restore as of the end of backing up the data portion of the database. ...
June 14, 2012 at 8:50 am
CELKO (6/13/2012)
June 13, 2012 at 6:14 pm
Just got an email from Yahoo, it's time to start thinking about SSC Fantasy Football 2012!
Who is ready for a rematch??
June 13, 2012 at 5:48 pm
sonia.burns (6/13/2012)
:w00t: Sorry about that (I'm an idiot) - have fixed it in the forum. You are a superstar
Don't worry about, you aren't an idiot. I get it often.
I...
June 13, 2012 at 5:41 pm
Just one little thing, I am not a her. 🙂
June 13, 2012 at 4:24 pm
Just be aware that if your SQL Server instances are running under the local server account on SEPARATE servers that you would need to do one of two things:
1) change...
June 13, 2012 at 4:21 pm
Viewing 15 posts - 11,311 through 11,325 (of 26,486 total)