Forum Replies Created

Viewing 15 posts - 3,271 through 3,285 (of 3,366 total)

  • RE: Image Processing In VB.Net

    Try the link below for sample code from Microsoft but you need to know Memory stream because you can use it to convert the image to bytes and if you...

  • RE: LEFT OUTER JOIN Teaser

    It is an interesting behavior but it is not a bug because ANSI SQL OUTER JOINS default mathematically to a NULL.  There are also known issues with the ISNULL function...

  • RE: Land of Confusion - SQL Server Agent account trouble

    Try the two links below for how to configure SQL Server Agent permissions to perform DTS automation.  You need to install SQL Server Agent with a service account with the...

  • RE: LEFT OUTER JOIN Teaser

    I think because a View is query rewrite and OUTER JOIN default mathematically to a NULL.   That is the reason extra care is needed to get expected results.  Check out SQL...

  • RE: MSDE liscence

    Read this thread for Microsoft own documentation and how you can get more out of MSDE. Thona knows how you can get more out of MSDE.  Hope this helps.

    http://forums.asp.net/612379/ShowPost.aspx

    Kind regards,

    Gift...

  • RE: ADO.NET corrupting SQL parameters

    I am not sure but try and change tinyint to int16 because tinyint maps to SByte in .NET FCL (framework class library) and it is not CLR compliant.  I would...

  • RE: exporting data into Interbase

    Create the tables in Interbase and run INSERT INTO it will take time but you can do it.  Hope this helps.

    Kind regards,

    Gift Peddie

  • RE: Working with time in T-SQL

    The main problem is there is no time stamp data type in SQL Server, the time stamp is a derived data type used internally by SQL Server.  To get seconds...

  • RE: Date range criteria

    Try the link below to use DATEDIFF function with timespan which gives you time interval without time interval function.  Hope this helps.

    http://www.stanford.edu/~bsuter/sql-datecomputations.html

    Kind regards,

    Gift Peddie 

  • RE: MSDE liscence

    The concurrent users issue is only related to write users not read, people have tested MSDE for more than 2500 read users.  Hope this helps.

    Kind regards,

    Gift Peddie

  • RE: Transaction DeadLock

    Try the code below it is what is recommended by my book SQL Server 2000 A beginner's guide by Dusan Petkovic.  But this code is for SQL Server 2005 so...

  • RE: Searching for changes in an ordered recordset

    I would create  a Unique index with IGNORE_DUP_KEY option because when an attempt is made to enter data for which there is a unique index and the IGNORE_DUP_KEY clause is...

  • RE: MSDE liscence

    I would not let an application create a new database for my users, I would check and shrink the database as needed by running DBCC Shrinkfile  and create a new one...

  • RE: MSDE liscence

    I don't think new database will be automatically created when you get to the 2gig limit.  All the detailed info about MSDE and other SQl Server editions are covered in Maximum...

  • RE: Hello friend, exists some way that a procedure return an array,or cursor,or recordset ?

    Try these two links for Arrays in SQL Server, I am assuming you know Arrays and Strings are classes but SQL Server types are Structures, the former are reference types...

Viewing 15 posts - 3,271 through 3,285 (of 3,366 total)