About 265 results
Open links in new tab
  1. File upload to SQL Image data type - social.msdn.microsoft.com

    Oct 7, 2021 · Define the column as [varbinary] (max) Here is one example to save one image into the table update dbo.user_tab set photo_file= (SELECT BulkColumn FROM OPENROWSET …

  2. SQL Server uptime, Database uptime - social.msdn.microsoft.com

    Sep 18, 2009 · Is there a way, preferably with T-SQL, to query how long the SQL Server service has been running? Also how long a particular database has been running (i.e. when it was last …

  3. Concatenate nvarchar (max) with nvarchar (max) yields null

    Aug 2, 2010 · I tried to concatenate two nvarchar (max) fields but the column came out being null. What is the recommended solution?

  4. 3GB Memory for sql server - social.msdn.microsoft.com

    Aug 3, 2009 · Is the Server a 32 bit server or a 64bit server? That is the first question to ask because the VAS regions are different for the two. If it is 64 bit, then your don't need to use …

  5. SSRS Space Issue in Parameter Value - social.msdn.microsoft.com

    Sep 28, 2015 · It supposed to create in Query designer, then SSRS will create a hidden dataset with parameter label and value populated. It will resolve the parameter value into its member …

  6. Create table with string identity column - social.msdn.microsoft.com

    Jan 21, 2010 · First, create an identity column in your table. Then once you have this identity column, you can create a computed column that concatenates the letter 'PY' with the identity …

  7. GUID as primary key; put cluster elsewhere?

    Mar 31, 2015 · The edge case where a random key value is beneficial from a performance perspective is when buffer latch contention rather than I/O is the performance limiting factor. …

  8. Update with Select top n statement - social.msdn.microsoft.com

    May 6, 2014 · You can only use this statement if you change select top (100) to select top (1). Once you change it, you can use it. For every expert, there is an equal and opposite expert. - …

  9. How to obtain High performance in selecting huge data in sql …

    Dec 12, 2014 · Question 0 Sign in to vote Hi I have got a table with 26 columns and about 1 million records in it, when I select all records from database in sql management it takes about …

  10. cursor type that will return @@fetch_status not zero after last …

    Jan 5, 2011 · Now, you invoke the cursor from dynamic SQL, so in this particular case, LOCAL is not going to work out, since dynamic SQL constitutes its own scope. But since the procedure …