Viewing 15 posts - 1 through 15 (of 81 total)
When you say you experience problems under heavy load, do you see some type of error message to indicate it's not working? Have you tried slowing down the load test...
April 30, 2012 at 10:13 am
Evil Kraig F (11/29/2011)
Think more like this:
CREATE TABLE Bldg (BldgName VARCHAR(20) NOT NULL CONSTRAINT PK_Bldg PRIMARY KEY CLUSTERED)
-- Floor is a SQL Function and keyword
CREATE...
November 29, 2011 at 3:57 pm
michael.french 172 (11/29/2011)
The top two entities are Buildings and Computers as both are entry points to the...
November 29, 2011 at 2:20 pm
Sean Lange (11/29/2011)
Building in the base. Everything comes...
November 29, 2011 at 2:16 pm
Evil Kraig F (11/29/2011)
November 29, 2011 at 2:09 pm
Yeah that helped, thank you. I can lookup the DMV's thanks!
October 25, 2011 at 9:33 am
That was exactly the example I was looking for THANK YOU! I was having a hard time finding an example that shows how to reference the Attribute Name.
August 3, 2011 at 12:54 pm
I've resolved my issue by following this Microsoft Blog.
One of the root issues is that the word breaker DLL's shipped with 2008 were not the latest version.
April 25, 2011 at 8:19 am
I will give this a try and let you know, thanks!
February 25, 2011 at 2:48 pm
Here is a text file I used as an example with the code that fails upon BULK INSERT.
I tried it with the code that Lowell left and it fails to...
February 24, 2011 at 9:23 am
Too bad... I was hoping I was overlooking something obvious. I keep looking at the syntax for "BULK INSERT" and the options in Books Online but nothing is...
February 23, 2011 at 4:25 pm
Something like this?
CREATE PROCEDURE [dbo].[sp_Myproc]
AS
WHERE 1=2
BEGIN
SELECT convert(NULL AS varchar(850)) AS column1
END
Select....
It should return one row that could be as large as 850 characters.
February 22, 2011 at 2:31 pm
I tried that way but it didn't like the temp tables in the stored procedure. I tried to copy the text of the procedure and use it as a...
February 22, 2011 at 2:09 pm
That's not a long term solution since you will want the server to start up normally after all this. Looking at the event logs it had trouble registering the...
January 30, 2011 at 9:16 am
Perry Whittle (1/30/2011)
vadon97 (1/29/2011)
2011-01-28 16:03:58.06 Logon Login failed for user...
January 30, 2011 at 9:05 am
Viewing 15 posts - 1 through 15 (of 81 total)