Viewing 15 posts - 8,611 through 8,625 (of 9,641 total)
** 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...
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?
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...
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
...
May 13, 2008 at 8:28 am
LocalSystem would be the default and should not cause the non-connection issue. Is IIS running?
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...
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...
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...
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,...
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...
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...
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...
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...
May 13, 2008 at 6:30 am
What about the autogrow for the log file? With that many writes the log file is likely to grow often and if on the same drive as the data...
May 12, 2008 at 3:05 pm
According to sp_spaceused you have 4GB of unallocated space in the database. In BOL under DBCC ShrinkFile iit suggests running:
[font="Courier New"]SELECT
name,
size/128.0 - CAST(FILEPROPERTY(name, 'SpaceUsed') AS INT)/128.0...
May 12, 2008 at 2:57 pm
Viewing 15 posts - 8,611 through 8,625 (of 9,641 total)