Viewing 15 posts - 6,736 through 6,750 (of 8,416 total)
Oh dear me no.
On SQL Server 2005, the master and resource databases must reside in the same location.
For full information see Moving System Databases on MSDN. Be sure to...
November 7, 2009 at 2:25 am
lokhande.deepali (11/7/2009)
Backup log database with truncate_only
this will truncate the non active logs from your log file then try to shrink your database...
November 7, 2009 at 2:18 am
sanketahir1985 (11/6/2009)
offcourse u can shrink .only user shouldn't be using that database.
Of course? But the log is 100% full...how do you propose to shrink it?
There is no restriction on...
November 7, 2009 at 2:13 am
First question: yes that's perfectly fine, though you'll need to manually copy the tail-log backup from the old share to the new share. That assumes that log shipping was...
November 7, 2009 at 2:07 am
I prefer the EXISTS. The plan seems more efficient, and the construct more natural.
TOP (1) would also work in place of the DISTINCT, but I'd still prefer the semi...
November 7, 2009 at 1:45 am
November 7, 2009 at 1:43 am
declare @Employee table (employee_id int primary key, name char(1) not null, memostatus char(1) null);
insert @Employee (employee_id, name) values (1, 'a');
insert @Employee (employee_id, name) values (2, 'b');
insert @Employee (employee_id, name) values...
November 7, 2009 at 1:11 am
arun.sas (11/7/2009)
Hi,try this
update aset a.MemoStatus = (case when (select 1 from MemoDetail b where b.EmployeeId = a.EmployeeId )=1 then 'Y'else 'N' end)
from Employee a
declare @Employee table (employee_id int primary...
November 7, 2009 at 1:07 am
Anyone interested in SSIS should be familiar with the name Jamie Thompson.
See http://consultingblogs.emc.com/jamiethomson/archive/2005/05/30/SSIS_3A00_-Enumerating-files-in-a-Foreach-loop.aspx for this question (notice the Enumerate Subfolders box), but also check out the wealth of great stuff...
November 7, 2009 at 12:56 am
Jeff Moden (11/6/2009)
November 7, 2009 at 12:47 am
As a general point, if you find yourself regularly performing 12 joins to get at the data you need, the database design may be too normalized. Consider de-normalizing the...
November 7, 2009 at 12:33 am
Bob, your posts always make me laugh!
November 7, 2009 at 12:28 am
Jeff Moden (11/6/2009)
deepakkn (11/6/2009)
Thanks for the Reply Paul.We had a thought about SSIS packages.But that would hamper my performance.
Paul... like the other post, not being snarky here... I just don't...
November 7, 2009 at 12:25 am
Knock a quick SSIS package together to read from the linked servers and populate a central table. Access the central table from Reporting Services. Or define a distributed...
November 6, 2009 at 10:49 pm
Nabha (11/6/2009)
I guess there are other ways to do that as well, but create a temp table and then do this...
I suppose I should mention that this won't work if...
November 6, 2009 at 10:03 pm
Viewing 15 posts - 6,736 through 6,750 (of 8,416 total)