Viewing 15 posts - 1,621 through 1,635 (of 9,641 total)
CameleWeb (4/9/2012)
Sorry, I dont know all about SOUNDEX. Sounds complicated...
Sorry, that's my bad, as SOUNDEX wouldn't work here anyway.
Basically I'm trying to find a way to get away...
April 9, 2012 at 3:00 pm
I don't know how FT reacts to the blob types like nvarchar(max) which you have in the table, but I do know that the inclusion of these columns in any...
April 9, 2012 at 1:39 pm
IN SSMS you need to go to Tools -> Options -> Scripting and set Script FUllText Indexes to True. Then when you generate the table script it will include...
April 9, 2012 at 12:49 pm
sknox (4/9/2012)
April 9, 2012 at 12:22 pm
It would also be helpful to have the table definitions and the creation statement for the FT Index.
You probably want to get rid of the index hint on...
April 9, 2012 at 11:47 am
I'm not a Full-Text search guy, but SQL Server caches data in memory the first time it is accessed so it could be as simple as the data not being...
April 9, 2012 at 11:21 am
Changing the ISOLATION LEVEL doesn't affect the any other SET options that I am aware of.
The issue could be that the servers or the databases in dev and production are...
April 9, 2012 at 10:56 am
sknox (4/9/2012)
Sean Lange (4/6/2012)
sknox (4/6/2012)
Sean Lange (4/6/2012)
... Basically you can simulate a foreign key via triggers but it is NOT actually a foreign key.
NO.
Any column in a table is a...
April 9, 2012 at 7:39 am
Why not populate the lookup tables in the dev box from the production box instead of using linked servers to test. It isn't really a valid test if linked...
April 9, 2012 at 7:32 am
You have to drop and re-create the column, which really means you need to drop and re-create the table. You do something like this:
Create TABLE new_table_with_identity(columns...)
SET IDENTITY_INSERT new_table_with_identity ON
Insert...
April 9, 2012 at 7:26 am
lsuersoy (4/9/2012)
A trigger that has been added by someone else before, also I've done on, modify, I get the following error.
The error is as follows:
Attempt to retrieve data...
April 9, 2012 at 7:18 am
lukebaker (4/9/2012)
April 9, 2012 at 7:15 am
Stefan Krzywicki (4/8/2012)
Perry Whittle (4/8/2012)
Stefan Krzywicki (4/7/2012)
The creation of the index you suggested did complete after 2 hours. That's much slower than it should be, but at least it completed.
Ok...
April 9, 2012 at 7:11 am
Sean Lange (4/6/2012)
Hugo Kornelis (4/6/2012)
Sean Lange (4/6/2012)
April 6, 2012 at 8:39 am
Okay a couple of semi-technical questions:
What do you all run to backup your home systems?
I may need to buy a new laptop soon. I use it for work and...
April 6, 2012 at 8:12 am
Viewing 15 posts - 1,621 through 1,635 (of 9,641 total)