Viewing 15 posts - 4,846 through 4,860 (of 14,953 total)
The DBA aspects of it are standard. Nothing particularly new or different. After all, backups and index maintenance are backups and index maintenance, and quality T-SQL is quality...
February 24, 2011 at 7:20 am
You'll need to write down all the rules for joining the tables. Otherwise, I'm left guessing.
February 24, 2011 at 7:18 am
The terminology is the thing that'll kill you faster than anything else. Some of it will be industry terms, some will be local dialect. You'll need to get...
February 23, 2011 at 1:51 pm
It looks like a simple join using the ChildID will do this.
select TA.DropID, TB.DropID, sum(Qty)
from TableA
inner join TableB
on TableA.ChildID = TableB.CaseID
group by TA.DropID, TB.DropID;
I'm assuming that you want...
February 23, 2011 at 1:49 pm
Steve Jones - SSC Editor (2/23/2011)
GSquared (2/22/2011)
February 23, 2011 at 12:39 pm
The only way to avoid that will be to put the SSIS engine and package on one of the two servers. Any method that involves a third server will...
February 23, 2011 at 11:28 am
If you're looking for columns and rows, you can use FOR XML to format it into an HTML table. Microsoft has an example of that on MSDN if you...
February 23, 2011 at 11:26 am
bitbucket-25253 (2/23/2011)
GSquared (2/23/2011)
Brandie Tarvin (2/23/2011)
WayneS (2/23/2011)
Brandie Tarvin (2/23/2011)
LutzM (2/22/2011)
Jeff Moden (2/21/2011)
I dun no... DE-troit boy goin ta ohia mur dan wonce in da sames yer mite git da...
February 23, 2011 at 10:04 am
If the data is going from one server to another (A to B), then the data also exists for some period of finite time, on any routers/switches in between them,...
February 23, 2011 at 10:01 am
Try something like this:
ALTER TRIGGER [dbo].[Update2ndTable] ON [dbo].[Table1]
AFTER INSERT, UPDATE
AS
SET NOCOUNT ON ; -- Can be very important in triggers
...
February 23, 2011 at 9:28 am
I always set up (or get set up) a domain account that's specifically configured for running these jobs. Minimum permissions needed, and definitely not my own account if I...
February 23, 2011 at 9:18 am
Edit to remove double-posting. (Connection issue.)
February 23, 2011 at 9:16 am
K Foster (2/23/2011)
Can you suggest an article or blog that would recommend what to trace for different environments (prod, dev, etc.)?
I've actually been meaning to write an article on that.
To...
February 23, 2011 at 9:15 am
Viewing 15 posts - 4,846 through 4,860 (of 14,953 total)