Forum Replies Created

Viewing 15 posts - 181 through 195 (of 252 total)

  • RE: BEWARE RENAMING OBJECTS

    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.


    Tim C //Will code for food

  • RE: Union 2 tables

    and siteid<>' '

    Slight optimization suggestion: Check

    Len(RTRIM(SiteId)) > 0

    instead. Checking for a length of a string to be 0 vs versus...


    Tim C //Will code for food

  • RE: Parsing an XML document generated from SQL via DOM

    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...


    Tim C //Will code for food

  • RE: changing column properties using sql-dmo

    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...


    Tim C //Will code for food

  • RE: ASP.Net Session State via SQL Server - tempdb

    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...


    Tim C //Will code for food

  • RE: ASP.Net Session State via SQL Server - tempdb

    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...


    Tim C //Will code for food

  • RE: ASP.Net Session State via SQL Server - tempdb

    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...


    Tim C //Will code for food

  • RE: ASP.Net Session State via SQL Server - tempdb

    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...


    Tim C //Will code for food

  • RE: ASP.Net Session State via SQL Server - tempdb

    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...


    Tim C //Will code for food

  • RE: SQL tools for updating data

    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...


    Tim C //Will code for food

  • RE: ASP.Net Session State via SQL Server - tempdb

    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)...


    Tim C //Will code for food

  • RE: Job - DTS - Permission

    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...


    Tim C //Will code for food

  • RE: SQL tools for updating data

    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...


    Tim C //Will code for food

  • RE: Identifying IDENTITY column

    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...


    Tim C //Will code for food

  • RE: Sp For retrieval of Data for .NEt

    http://www.sqlservercentral.com/forum/topic.asp?TOPIC_ID=9419&FORUM_ID=5&CAT_ID=1&Forum_Title=Administration&Topic_Title=Sp+For+retrieval+of+Data

    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...


    Tim C //Will code for food

  • Viewing 15 posts - 181 through 195 (of 252 total)