Viewing 13 posts - 1 through 13 (of 13 total)
Is there a definite fix for this ?! I am running 2005 64bit on SP2
I have tried everything and it looks as though I can no longer debug -...
March 26, 2008 at 11:03 am
Many thanks
The area I was looking for was refirred to as Multiplexing: Using Middleware, Transaction Servers, and Multitiered Architecture
in bold it states "Use of such multiplexing or pooling hardware...
January 3, 2008 at 7:15 am
One nice thing you can do well using all of these EM features is have profiler running in the background. That way you can view all the SQL commands that...
November 16, 2004 at 2:50 am
Completely agree it serves no real purpose, I am still looking forward to using the middle join we were taught in yesterday’s class
October 22, 2004 at 2:56 am
I have tried to write something similar, however the reason for writing our proc was to search for those statements that change the database schema, so using the above examples...
September 29, 2004 at 10:39 am
Sorry about the formatting earlier, you need to see the READTEXT explanantion from BOL
USE pubs
GO
DECLARE @ptrval varbinary(16)
SELECT @ptrval = TEXTPTR(pr_info)
FROM pub_info pr INNER JOIN publishers p
ON pr.pub_id...
September 28, 2004 at 7:39 am
This example reads the second through twenty-sixth characters of the pr_info column in the pub_info table.
USE pubsGODECLARE @ptrval varbinary(16)SELECT @ptrval...
September 28, 2004 at 7:36 am
I actullay just resolved this, I turned to DTS in the end, created an ActiveX task and used ADO and FSO. Out of interest it was to build an HTML...
July 1, 2004 at 7:50 am
Thanks Jeff at least it gives me a new angle, as far as I am aware xp_shell is enabled.
July 1, 2004 at 7:22 am
BOL states that Only members of the sysadmin and bulkadmin fixed server roles can execute BULK INSERT.
So I have set users to be members of this role however, it only...
July 1, 2004 at 2:28 am
Looked at that, quite impressive, $5000 price tag a bit steep
As this was an automated process I used ADO in the end to extract the first row and left bulk...
April 21, 2004 at 4:41 am
Thanks Jeff, I had a feeling it might be after trying everything... The problem I have is that the file is about 1GB, mine too is an automated process so...
April 20, 2004 at 6:43 am
Just to shed some further light, I have put this file in a Hex editor and there is a valid line feed and carriage return after each line very confused...
April 20, 2004 at 4:49 am
Viewing 13 posts - 1 through 13 (of 13 total)