Viewing 15 posts - 61 through 75 (of 522 total)
Are you using integrated security? It looks like a double hop issue, i.e. NTLM credentials cannot be hopped to the second machine. So the linked server works fine if you...
January 25, 2008 at 7:41 am
Thanks Hugo for your clarification and thanks Richard for the link.
I do use correlated subqueries in a daily basis but in my mind, the outer table can only be referenced...
January 14, 2008 at 9:56 am
I am on vacation till Jan.14. I have no reach to any SQL server and have very limited access to internet during my vacation. So I am sorry for the...
January 4, 2008 at 2:40 am
if the file exists, bcp jsut overwrites it. So you don't need to delete it
December 14, 2007 at 2:11 pm
1) Those groups are created by SQL server 2005 installation;
2) MS suggests to add the user accounts under which SQL Server serviecs run to the corresponding group. and Only assign...
December 14, 2007 at 2:00 pm
if you use sp_xml_preparedocument, OPENXML, and forget sp_xml_removedocument, you will get mem leak.
Sometime though you do call sp_xml_removedocument after sp_xml_preparedocument, you can still get mem leak, e.g. time out happened...
December 14, 2007 at 1:53 pm
select A, B, MAX(C) AS MaxC
from Yourtbl
group by A,B
December 14, 2007 at 1:34 pm
You can use DBCC CHECKIDENT to reseed the identity value to 3000.
October 3, 2007 at 7:15 am
I copied your code and ran it on my box, it succeeded with no errors.
Check your msxml.dll version.
September 27, 2007 at 2:54 pm
Brandie Tarvin (9/27/2007)
I'm learning how to create XML Schema Collections and I have questions on the "basic" stuff they always include in the help files, but never fully explain.
Here...
September 27, 2007 at 2:38 pm
I couldnot see your schema and xml in your post. So not sure what's happening
September 27, 2007 at 2:26 pm
In SQL 2005, the proxy account for xp_cmdshell and proxy for CmdExec job step is different.
If you want to run the SP, set the proxy accoutn as:
EXEC
...
September 19, 2007 at 7:47 am
You can use UNION to get the result. The following is the sample code:
DECLARE @xmlLocations XML
SELECT
@xmlLocations
September 4, 2007 at 7:18 am
Strange, my status is showed offline when I logged in, even when I reply the post
July 16, 2007 at 7:40 am
Thanks Steve.
I checked my email settings, I donot have any filters setup. I haven't got today's newsletter too.
I got the notification email for your reply though.
Not sure what's going on. I'll do...
July 16, 2007 at 7:38 am
Viewing 15 posts - 61 through 75 (of 522 total)