Viewing 15 posts - 2,611 through 2,625 (of 2,840 total)
Once you have set up a full back up, make sure you have transaction log back up done at a certain interval. FTP those transaction log to the new location...
September 3, 2008 at 10:15 am
You can use CASE Statement itself.
create procedure dbo.uspProductSel
(@ProductID INT, @ProductName VARCHAR(100), Description VARCHAR(255), Price MONEY)
As
set nocount on
select Col1,Col2,Col3, from product
where ProductID = Case When len(@ProductID) =0
...
September 2, 2008 at 2:36 pm
GSquared (9/2/2008)
September 2, 2008 at 2:04 pm
Thanks GilaMonster. The scary part is Locking yourself out of the DB. I will have to test this out with different scenarios.
July 28, 2008 at 11:34 am
Hi Sharon,
What you have to do or make sure of is to confirm that the TempDB Database files are not on the same drive as that of your Main DB....
July 24, 2008 at 6:47 am
Load some test data into the table. Marks idea is a good... I think I could use that.
June 25, 2008 at 10:38 am
Was the consultant talking about Transaction Log shipping to another Server? So that you can set up a Warm Stand By?
June 25, 2008 at 9:36 am
Are you trying to find out why CPU is being used by the SQL Server? Then you can start with running a profiler with filter on CPU (let us say...
June 3, 2008 at 9:58 am
Thanks for clearing up..:)
And you have a cool temper..;)
May 22, 2008 at 3:26 pm
Hi matija,
UPDATE p
SET P.HourlyRate_Calc = ISNULL(w.PPRRate, hr.hourlyrate)
FROM MQDW.dbo.ETM_PayDataImport p
LEFT JOIN MQDW.dbo.ETM_PPRWages w
ON (p.personnum = w.personnum) AND (p.PeriodEndDate = w.periodenddate) AND (p.weekofyear = w.weekofyear)
This is an example of Updating the Alias....
May 22, 2008 at 3:17 pm
How are you selecting the data from AS400 and importing to SQL Server? Do you need to update all columns or are you looking for certain column values. If it...
May 22, 2008 at 2:58 pm
Hi Matija,
I liked the way you kept your cool. I am not sure why you say that you should not try to Update the Alias? That is ANSI Standard....
May 22, 2008 at 2:39 pm
Thanks for the reply. We are using a compressed Back Up. Litespeed is compressing our 270 GIG DB to 40 Gig. We can do Object level restore from it. I...
May 21, 2008 at 9:06 am
The over load of Connection pooling happens in the Web Servers. Not the Database servers. It is the ODBC Driver that throws the error. The best practice to do is...
May 20, 2008 at 3:16 pm
Another question based on WAN. What would be the effect of Connection pooling? We already have issues with Connection pooling because there are too many open connection and we are...
May 19, 2008 at 3:06 pm
Viewing 15 posts - 2,611 through 2,625 (of 2,840 total)