Viewing 15 posts - 8,611 through 8,625 (of 9,643 total)
Reindexing will definitely grow the log file. I would just run my full backup and a TX Log backup after the reindexing job
Jack Corbett
Consultant - Straight Path Solutions
Check out these links on how to get faster and more accurate answers:
Forum Etiquette: How to post data/code on a forum to get the best help
Need an Answer? Actually, No ... You Need a Question
May 13, 2008 at 9:32 am
Terry (5/13/2008)
Exactly! how can i do each statement in a transaction?
Begin Try
Begin Transaction
Update source set model = 1 where client 2
COmmit Transaction
End Try
Begin Catch
Rollback transaction
End Catch
Begin Try
Begin Transaction
UPdate...
Jack Corbett
Consultant - Straight Path Solutions
Check out these links on how to get faster and more accurate answers:
Forum Etiquette: How to post data/code on a forum to get the best help
Need an Answer? Actually, No ... You Need a Question
May 13, 2008 at 9:22 am
** edit -- posted while you were posting the real code **
Can you post the original code so we can actually see what you were doing and propose a solution...
Jack Corbett
Consultant - Straight Path Solutions
Check out these links on how to get faster and more accurate answers:
Forum Etiquette: How to post data/code on a forum to get the best help
Need an Answer? Actually, No ... You Need a Question
May 13, 2008 at 8:58 am
Can you post your .NET code? Do you have SSMS Express installed and, if so, can you run the backup from the app machine using SSMS Express?
Jack Corbett
Consultant - Straight Path Solutions
Check out these links on how to get faster and more accurate answers:
Forum Etiquette: How to post data/code on a forum to get the best help
Need an Answer? Actually, No ... You Need a Question
May 13, 2008 at 8:43 am
Terry (5/13/2008)
Let's say that i get the phone number from another embedded select (that's why i put values likes XXX and YYY).
The...
Jack Corbett
Consultant - Straight Path Solutions
Check out these links on how to get faster and more accurate answers:
Forum Etiquette: How to post data/code on a forum to get the best help
Need an Answer? Actually, No ... You Need a Question
May 13, 2008 at 8:38 am
Looks to me like you just need 1 update statement in a stored procedure like this:
[font="Courier New"]CREATE PROCEDURE update_phone_no
(
@id INT,
@phone VARCHAR(15)
)
AS
UPDATE Clients
SET phone = @phone
WHERE
...
Jack Corbett
Consultant - Straight Path Solutions
Check out these links on how to get faster and more accurate answers:
Forum Etiquette: How to post data/code on a forum to get the best help
Need an Answer? Actually, No ... You Need a Question
May 13, 2008 at 8:28 am
LocalSystem would be the default and should not cause the non-connection issue. Is IIS running?
Jack Corbett
Consultant - Straight Path Solutions
Check out these links on how to get faster and more accurate answers:
Forum Etiquette: How to post data/code on a forum to get the best help
Need an Answer? Actually, No ... You Need a Question
May 13, 2008 at 8:04 am
I have not used the CLR as yet, and have not really seen a compelling reason to use it. I try to avoid situations where strings need to be...
Jack Corbett
Consultant - Straight Path Solutions
Check out these links on how to get faster and more accurate answers:
Forum Etiquette: How to post data/code on a forum to get the best help
Need an Answer? Actually, No ... You Need a Question
May 13, 2008 at 7:55 am
On the job step you can specify a number of times to retry a step on failure along with how long to wait between retries. You really need to...
Jack Corbett
Consultant - Straight Path Solutions
Check out these links on how to get faster and more accurate answers:
Forum Etiquette: How to post data/code on a forum to get the best help
Need an Answer? Actually, No ... You Need a Question
May 13, 2008 at 7:27 am
Let me make sure I understand your issue, you have a full db backup and a single file with 175 log backups since the full backup. What your code is...
Jack Corbett
Consultant - Straight Path Solutions
Check out these links on how to get faster and more accurate answers:
Forum Etiquette: How to post data/code on a forum to get the best help
Need an Answer? Actually, No ... You Need a Question
May 13, 2008 at 7:21 am
One way would be to generate a random number, see this thread for one way, and then use start_date = DateAdd(day, random_number, getdate()) and end_date = DateAdd(day, random_number + 1,...
Jack Corbett
Consultant - Straight Path Solutions
Check out these links on how to get faster and more accurate answers:
Forum Etiquette: How to post data/code on a forum to get the best help
Need an Answer? Actually, No ... You Need a Question
May 13, 2008 at 7:10 am
Can you post your application's connection string? Changing sensitive information of course. I ask because the error you are getting is telling me that you are attempting to...
Jack Corbett
Consultant - Straight Path Solutions
Check out these links on how to get faster and more accurate answers:
Forum Etiquette: How to post data/code on a forum to get the best help
Need an Answer? Actually, No ... You Need a Question
May 13, 2008 at 7:06 am
Is this SQL Server 2005? Did you tell Reporting Services to start during the install?
You need to go to SQL Server Surface Area Configuration -> Configuration for Services and...
Jack Corbett
Consultant - Straight Path Solutions
Check out these links on how to get faster and more accurate answers:
Forum Etiquette: How to post data/code on a forum to get the best help
Need an Answer? Actually, No ... You Need a Question
May 13, 2008 at 7:03 am
You are right it is messy. There is a lot going on here, can you provide a brief explanation of the business rules for the code? I also...
Jack Corbett
Consultant - Straight Path Solutions
Check out these links on how to get faster and more accurate answers:
Forum Etiquette: How to post data/code on a forum to get the best help
Need an Answer? Actually, No ... You Need a Question
May 13, 2008 at 6:59 am
You use the Error data path. The only thing I can think of is that you need to Configure Error Output for the Transformation task and set it to...
Jack Corbett
Consultant - Straight Path Solutions
Check out these links on how to get faster and more accurate answers:
Forum Etiquette: How to post data/code on a forum to get the best help
Need an Answer? Actually, No ... You Need a Question
May 13, 2008 at 6:30 am
Viewing 15 posts - 8,611 through 8,625 (of 9,643 total)