Viewing 15 posts - 526 through 540 (of 2,612 total)
Check the FillFactor on the index. It is also possible to have a badly fragmented index bloating it's size.
October 13, 2008 at 10:48 am
If it is an either/or situation, you can do the logic before calling the select statement:
IF @Col = 'FirstName'
BEGIN
SELECT * FROM MyTable WHERE FirstName LIKE @val + '%'
END...
October 13, 2008 at 10:47 am
I would say your bigger problem is that starting the LIKE condition with a wildcard means the database engine cannot use an index. So, if you have a single...
October 13, 2008 at 9:54 am
The MS Active/Active cluster solution is a bit misleading. Clustering is for HA only, it is not a load balancing solution.
In an Active/Active cluster, you need two instances of...
October 13, 2008 at 9:07 am
What is it you are really trying to do?
You can add the sharepoint databases to your existing instance and leave the cluster exactly as it is. What is wrong...
October 13, 2008 at 8:47 am
Here is an option - you could just join back to the table three times:
[font="Courier New"]declare @TestTable table
(
startdate datetime,
...
October 13, 2008 at 6:22 am
My suggestion is to stop the services on the original servers, copy the databases (including the system databases) to the new servers, and start the services on the new servers....
October 10, 2008 at 12:07 pm
If it is only two tables, table locks are probably the way to go.
That can get a bit tricky with SSIS if you have multiple steps in your control flow...
October 10, 2008 at 9:50 am
Single-user mode will limit you to a single connection to the database. You can do this, but you would have to set your connection manager to RetainSameConnection and make...
October 10, 2008 at 9:30 am
The servers are physically different, but can you convince them to retain the original server names and IP addresses?
If so, keep everything simple. Stop the services on the servers...
October 10, 2008 at 9:01 am
To add to this, it is a bit risky to develop on one version of a database and have your production systems running on another. They behave differently -...
October 10, 2008 at 8:53 am
No.
You cannot in any way restore a SQL 2005 database backup on a SQL 2000 server. Compatibility mode will not help you.
Your only option would be to copy the...
October 10, 2008 at 8:52 am
You have not given me any clue what "it" is, but I will still try one last post.
Add a derived column component to the data flow.
in the component, add two...
October 10, 2008 at 8:41 am
It will look something like this:
[font="Courier New"]CREATE PROC MyProc
@InputVal VARCHAR(20)
, @OutputData VARCHAR(20) OUTPUT
AS
/* do something */
SET @OutputData = 'MyOutputVal'
RETURN(0) --Good practice to return 0 on success[/font]
Look in...
October 10, 2008 at 8:30 am
You want to either use a derived column component or a conditional split. If you post more details, I could be more specific on what you need to do.
October 10, 2008 at 8:23 am
Viewing 15 posts - 526 through 540 (of 2,612 total)