Viewing 15 posts - 46 through 60 (of 200 total)
You could use a SQLCLR procedure to access the external data source, or import the data into the database (e.g. using a scheduled SSIS package).
March 6, 2009 at 5:17 am
This may be a shot in the dark, because I don't know your data, but...
Have you tried creating an index using the descending order on the datedesc column?
March 6, 2009 at 5:14 am
As you've noticed, some characters are ignored when building the full-text index (e.g. punctuation marks) and it is not possible to change the behaviour of the indexing engine.
With MSSearch using...
March 6, 2009 at 5:12 am
The -N switch means that character data will be exported as Unicode (Unicode files begin with the declaration that you've noticed).
If you don't use any ANSI extended characters you can...
March 6, 2009 at 4:11 am
SQL Logins/Users do not exist outside the SQL Server instance, therefore have no access to the "outer world".
In order for SQL Users to access external resources they must use appropriate...
March 6, 2009 at 4:01 am
Do the objects still exist?
Have permissions been changed?
March 6, 2009 at 3:54 am
What do those two tables have in common?
E.g. considering the same key exists in both tables:
select<column list>
from<table 1>
inner joincontainstable(<arguments> ) t1ct
ont1ct. = <table 1>.<FTS key column>
<inner or outer> join<table 2>
on<table...
March 6, 2009 at 3:52 am
Partition switching is a schema-only operation - i.e. only the pointers to the actual physical location of data are changed, no data is actually moved.
However, indexes must be aligned with...
March 6, 2009 at 3:38 am
Have you read this article by Tony Rogerson:
It seems the problem (based on Tony's experimentation) is not present in SQL 2005.
Here's another article on the subject, by Kimberly L. Tripp,...
March 6, 2009 at 3:21 am
AFAIK, you can blog at SQL Server Central (http://www.sqlservercentral.com/blogs/[/url]).
On the right side of the screen look for "Get Your Own Blog".
January 26, 2009 at 7:37 am
You can use the bcp utility (look it up in Books Online) invoked via xp_cmdshell (look it up in Books Online). T-SQL is powerful and can be used to solve...
January 26, 2009 at 3:37 am
This is a very common question in newsgroups/forums, and you've provided a very intuitive example.
Have you considered posting this in a blog? It would certainly be useful for quite a...
January 26, 2009 at 3:13 am
Use single quotes to delimit explicit character values.
Double quotes can be used to delimit object identifiers (e.g. if they contain special characters). Look up the QUOTED_IDENTIFIER option in Books Online.
January 23, 2009 at 5:16 am
Is there a special reason for using user instances?
If you cannot avoid using them, make sure the "user instance enabled" option is set for the SQL Server Express instance (look...
January 23, 2009 at 5:04 am
Viewing 15 posts - 46 through 60 (of 200 total)