Viewing 15 posts - 286 through 300 (of 602 total)
Hello,
Can you post the estimated execution plan? I'd surely like to see it. I believe that looking at the plan will help answer your question about which is faster. (querying...
September 6, 2006 at 7:17 am
Hi newbie. google for: How to configure sql mail
September 1, 2006 at 2:58 pm
There are some configuration settings in the client access tools that can be made that affect the transaction isolation level that is used. This is supposed to allow updates without having journaling...
September 1, 2006 at 2:41 pm
And I forgot to mention that the SQL7008 error you might get (and did get in some of your queries) is probably because journaling is not set up on the...
September 1, 2006 at 10:54 am
I'm sorry but I don't have access to the machines until Tuesday. I will try to help in the meantime.
The 4 part name method (your first query) should be the...
September 1, 2006 at 10:33 am
Hi, This is a frustrating subject, indeed. I've had similar problems and there isn't much help out there.
What I did was use the IBM driver to create an ODBC connection,...
September 1, 2006 at 6:46 am
Please note that it is a violation of your licensing agreement with the makers of the Crystal Reports software to reverse-engineer even the reports that you yourself created.
Are you sure...
August 31, 2006 at 2:31 pm
P.S.
Did you apply all of the patches BEFORE you created the backup? There was a case with that product where an error message would lead you via their KB to...
August 30, 2006 at 7:52 am
Is the database still listed in the EM? Or does it show up if you run
Select * From master..sysdatabases
?
August 30, 2006 at 7:49 am
This whole Mickey Mouse thing about Pluto just seems Goofy to me.
August 30, 2006 at 7:41 am
Glad I could help.
jg
August 15, 2006 at 10:53 am
What I've done in the past is used a modulo operator on a suitable numeric column. Perhaps an identity column.
Like so:
---
Update SomeTable Set SomeColumn = SomeNewValue
where IdentityColumn % 10 =...
August 10, 2006 at 10:21 am
If you can get rows back from this query:
SELECT name,
substring(Password,3,4) as salt,
substring(Password,27,20) as UpperCaseHash,
substring(Password,7,20) as MixedCaseHash
FROM [master].[dbo].[sysxlogins]
on the server you want to crack, you can enter the values into...
August 10, 2006 at 7:13 am
Another couple things you might check are antivirus software and filesystem backups. Either of them can get the OS to report that a file doesn't exist even when it actually exists,...
August 10, 2006 at 6:27 am
I would posit that the reason that you can't find a reference to a good explanation is that there is no such explanation. There is no possible argument that it...
August 7, 2006 at 12:01 pm
Viewing 15 posts - 286 through 300 (of 602 total)