Viewing 15 posts - 6,631 through 6,645 (of 6,648 total)
There is an option to repair minor errors. If that option is checked - then exclusive access is required to run the integrity check.
Generally, you do not want the...
January 23, 2008 at 9:02 pm
A couple of ways to find out:
Open Activity Monitor, find the process and see what commands are being run.
Or, install the Performance Dashboard Reports from Microsoft. Run the report...
January 17, 2008 at 10:04 pm
239 columns? You definitely have a problem with normalization. I would highly recommend normalizing this table.
The only reason I could see having this many columns (and this is...
January 16, 2008 at 11:02 am
If you cannot afford any downtime, the only option is to backup/restore. Now, since you will be moving your backup files to a network share (make sure you have...
January 16, 2008 at 10:50 am
Since they only need something to run queries - there are several low cost (and free) utilities available.
I prefer either Toad from Quest or DbVisualizer, but there is also WinSQL...
January 15, 2008 at 8:22 pm
I have no idea how many apps would run - all I know is that one of my vendors would not support the version we had on SQL Server 2005....
January 6, 2008 at 7:19 pm
This sounds like a vendor supplied application. If so, and the vendor does not support this version on SQL Server 2005 - there are no options for you other...
January 6, 2008 at 7:02 pm
Take a look at the SQL Compare and SQL Data Compare tools from Redgate. I hope they are making these changes on a test system first. You can...
January 5, 2008 at 11:04 am
smknox (12/29/2007)
This doesn't seem to work:
CREATE PROCEDURE usp_ProgNote_Insert
@SecondaryKeyValue int
,...
December 29, 2007 at 12:44 pm
They are just icons for the maintenance plan. They have no special meaning.
The difference can be explained by looking at the version of SQL Server you are connecting to....
December 29, 2007 at 12:27 pm
SQLIS has plenty of examples for all types of transformations. You might want to take a look at the rowcount transformation examples.
December 26, 2007 at 10:06 am
Sure, what you have is:
,'TeamMentor' =
CASE
WHEN TeamMentorDate IS NOT NULL THEN 'Team Mentor'
WHEN (SELECT r.AchieveTitle FROM Repromotes r WHERE RepFlag = 'X' AND AchieveTitle = 'Team Mentor) THEN 'Team...
December 24, 2007 at 12:53 pm
Yes - you can, but I am not sure you need this. Anyways, for that part - you can use an EXISTS, or check for NOT NULL. Examples:
CASE
...
December 24, 2007 at 12:27 pm
SQL Server uses the Windows password policy mechanism. So, whatever is defined on your server (Windows 2003 or higher) is what will be used.
December 24, 2007 at 12:00 pm
Viewing 15 posts - 6,631 through 6,645 (of 6,648 total)