Viewing 15 posts - 331 through 345 (of 602 total)
There is an "unclassified" program that does it with source code included.
http://earth-info.nga.mil/GandG/geotrans/
jg
June 5, 2006 at 8:27 am
The message you got back is a general syntax error. '@user' is not a valid user name, so the parser rejected your batch. You must specify the user in...
June 5, 2006 at 8:14 am
Adding RAM will definitely improve the PLE, as long as SQL server can address it. Depending on the OS and SQL version, you may face certain hard limits. Now the...
June 1, 2006 at 12:13 pm
Adam,
If you used the standard showcontig/indexdefrag substantially similar to the one from Microsoft's site. (I forget where exactly) then you probably don't have an index org problem. You might be...
June 1, 2006 at 8:50 am
I believe that when you use Trusted_Connection=yes, you are not using SQL server authentication. Try removing that from the connection string. Also use 'UID=' instead of 'User ID=' and 'PWD='...
May 26, 2006 at 7:58 am
Send everyone to anger management classes. That would be a good first step.
May 26, 2006 at 7:14 am
If you are talking about GPS, let me know. I am developing a mobile application that uses real-time GPS data, and I have all of the data capture stuff up...
May 26, 2006 at 6:33 am
Hello,
I'm not sure if the instructions that you have for the system databases are correct, but they look right. If they came from a trusted source, then I would believe that...
May 18, 2006 at 7:13 am
These should be posted in "General Complaints".
May 17, 2006 at 1:20 pm
I've run into that kind of problem before. Sometimes, the answer is to break up the query into smaller parts, storing intermediate results into a #Table or @Table variable.
There is...
May 11, 2006 at 10:48 am
I think some more and I think this....
Try getting the rowcount estimate from this select:
Select * from Person where
[Person].[lastname]='JONES'
AND [Person].[firstname] >= 'WALTEQþ'
AND [Person].[firstname] < 'WALTES'
That will tell you...
May 11, 2006 at 8:44 am
I have a guess. It would appear that the second query is planned to have a predicate (see the 'WHERE'?) on the seek, which makes it seem more selective to the...
May 11, 2006 at 8:35 am
I got bored, so I'm showing a C# example. This changes the password for the first connection object in a DTS package called DumbTestPackage.
static...
April 27, 2006 at 1:32 pm
The very first step is to sign up on sqlservercentral.com, which you already did.
jg
April 27, 2006 at 7:19 am
Viewing 15 posts - 331 through 345 (of 602 total)