Viewing 15 posts - 16 through 30 (of 72 total)
satyanj (3/5/2013)
SELECT ContactID,
LastName,
Phone
FROM Person.Contact
WHERE EmailAddress LIKE 'sab%'
In the execution plan, why is the "Key Lookup" operator appearing below the "Index Seek" operator...
March 5, 2013 at 8:21 pm
Maybe, you can use a dynamic query
DECLARE @X bit, @strSQL nvarchar(2000)
SET @X = 1
SET @strSQL =' SELECT ' + CASE WHEN @X = 1 THEN ' COLUMN1,COLUMN2,COLUMN3'
...
March 5, 2013 at 7:57 pm
I have some recommends here:
1-Choose the point time when your server does not work hard
2-Separate your table into smaller pieces (may be multiple files) and using a package to...
March 4, 2013 at 9:55 pm
opc.three (2/28/2013)
Dung Dinh (2/28/2013)
I have a table Order with primary key ID column is uniqueidentifier data type on server B. Nightly, a synchronization job runs to synchronize orders from...
February 28, 2013 at 11:40 pm
Dung Dinh (2/6/2013)
SQLAJ (2/6/2013)
February 6, 2013 at 7:03 pm
david.abram (2/6/2013)
Does the SQL service even start up? If not, you will need to use SQL server configuration manager to change the account that SQL server is using.
Yes, SQL Service...
February 6, 2013 at 7:56 am
SQLAJ (2/6/2013)
February 6, 2013 at 7:40 am
david.abram (2/6/2013)
As far as I understand your question, you are trying to login to your SQL instance with an account from a separate domain. As your SQL instance won't have...
February 6, 2013 at 7:36 am
GilaMonster (2/1/2013)
February 1, 2013 at 3:15 am
I got it. Thank so much,
January 31, 2013 at 8:28 pm
james marriot (1/24/2013)
select OL1.a, OL1.b, OL1.c, OL1.d, OL1.e, OL1.f, OL1.g
from Orders O
inner join OrderLines OL1...
January 24, 2013 at 4:12 am
Bhuvnesh (1/22/2013)
Dung Dinh (1/22/2013)
Do we should create a non-clustered/clustered index on GUI column?
WHat are they ?
I mean that the columns with data type = uniqueidentifier.
January 22, 2013 at 3:38 am
GilaMonster (1/22/2013)
January 22, 2013 at 3:27 am
Thanks for all,
I will consider them before applying.
January 22, 2013 at 2:35 am
- You can create a computed column and search on it
Or
- Try to do that with Full-Text Search
January 8, 2013 at 2:12 am
Viewing 15 posts - 16 through 30 (of 72 total)