Viewing 15 posts - 181 through 195 (of 251 total)
Instead of banging your head on the wall go for more Guiness. As to your problem,... been there, done that, wish I could say I hadn't.
January 24, 2003 at 11:01 am
and siteid<>' '
Slight optimization suggestion: Check
Len(RTRIM(SiteId)) > 0
instead. Checking for a length of a string to be 0 vs versus...
January 24, 2003 at 9:31 am
Without a schema inline or otherwise no xml parser can determine the type for you. on your select statement, try using select * from table for xml auto, xmldata.
Tim C.
//Will...
January 23, 2003 at 6:26 pm
Why not turn on "IDENTITY_INSERT" for that table instead during the duration of the insert? I assume the reason you want to turn off the identity property is becuse you...
January 23, 2003 at 8:30 am
Thanks, and you are correct a HEAVILY used site IMHO would quickly fill up the memory on a StateServer especially if objects were being serialized into it. What I would...
January 22, 2003 at 3:37 pm
quote:
a) Not memory based;b) Can work in a web farm environment with either a cookie based or cookieless sessionID.
c) Your sessionID is...
January 22, 2003 at 3:14 pm
Here is a nice article on asp.net session state : http://www.eggheadcafe.com/articles/20021016.asp
Tim C.
//Will write code for food
One Windows to rule them all, One Windows to find them,
One Windows to bring them...
January 22, 2003 at 2:38 pm
Well, MSFT already had the answer on how to use a db other than temdb, just needed to dig deeper.
HOW TO: Configure ASP.NET for Persistent SQL Server Session State Management
http://support.microsoft.com/default.aspx?scid=kb;EN-US;q311209
Tim...
January 22, 2003 at 2:35 pm
The #2 solution even tho in memory is in memory on one server. So farming is viable without having to "STICK" a user to a server for the duration of...
January 22, 2003 at 2:28 pm
I defer to your experience with SQL Data Compare. I only used it till my
shareware on it ran out. We have been using the SQL Compare product for about...
January 22, 2003 at 2:17 pm
Andy, there are three options for storing session state in asp.net now.
1) In local memory (Same old nasty non-farmable method)
2) In memory on a central server. (I Prefer this method)
3)...
January 22, 2003 at 2:06 pm
http://support.microsoft.com/?kbid=269074
http://www.sqldts.com/default.aspx?6,105,212,0,1
Tim C.
//Will write code for food
One Windows to rule them all, One Windows to find them,
One Windows to bring them all and in the darkness bind them
In the Land of...
January 22, 2003 at 11:43 am
If you don't mind spending a tiny sum see SQL Data Compare :
http://www.red-gate.com/sql/summary.htm
As for built in that come with SQL Server, there are none that I know of.
Tim...
January 22, 2003 at 11:24 am
IMHO I believe the status column contains a bit masked value containing the
values that define the column. I believe the COLUMNPROPERTY ( id , column ,
property ) function...
January 22, 2003 at 8:49 am
Tim C.
//Will write code for food
One Windows to rule them all, One Windows to find them,
One Windows to bring them all and in the darkness bind them
In the Land of...
January 21, 2003 at 11:46 am
Viewing 15 posts - 181 through 195 (of 251 total)