Viewing 15 posts - 3,316 through 3,330 (of 7,168 total)
Use a return code.
Zero typically means 'no error' and non-zero typically means 'problem occurred'.
-- proc 1:
ALTER PROC [dbo].[nz_test1]
AS
BEGIN TRY
EXEC sp_configure
...
August 24, 2012 at 3:51 pm
may be truncated if it exceeds the maximum length of 4000 characters
This is a validation message based on SSIS not knowing if the result of an Expression in your Package...
August 24, 2012 at 2:45 pm
Rich James (8/24/2012)
The difference I see between your setup and mine from this is that I'm using a Domain account, rather than a local machine account.
Do you get the same...
August 24, 2012 at 10:14 am
Can you please check again. Yuor query is not checking for any of the MAX types. Try this one instead:
SELECT t.name AS ,
...
August 24, 2012 at 9:58 am
tonyclifton77 (8/24/2012)
August 24, 2012 at 7:15 am
Anamika (8/23/2012)
That said, it is a good practice to separate your backups from your SQL Server program,white paper / blogs on the above comment.
-Ami
August 24, 2012 at 6:26 am
You could easily test it out using a test database and Profiler, but why risk it?
USE DatabaseName;
GO
EXEC sys.sp_rename
@objname = N'SchemaName.TableName.ExistingPrimaryKeyName',
@newname =...
August 23, 2012 at 5:36 pm
The obligatory response: are you sure you want to shrink your data file? Stop Shrinking Your Database Files. Seriously. Now. by Brent Ozar[/url]
Now that we have that out of the...
August 23, 2012 at 2:36 pm
It might be a UI or server bug.
What is the build # of the server?
SELECT SERVERPROPERTY('ProductVersion');
What is the build # of your copy of SSMS?
Help Menu > About
What does this...
August 23, 2012 at 2:24 pm
I forgot most of my DTS skills but since you have not received any responses I'll make a general suggestion:
Instead of loading the data directly into your target table, load...
August 23, 2012 at 2:20 pm
If the backup succeeds and is valid (i.e. can be successfully restored somewhere), then SQL Server later crashes then your backup will not be affected.
That said, it is a...
August 23, 2012 at 2:17 pm
Viewing 15 posts - 3,316 through 3,330 (of 7,168 total)