About 386 results
Open links in new tab
  1. Creating a new PivotTable in c# Excel.Interop

    Sep 17, 2012 · Excel is very open to developers and many things can be reused and expanded. The PivotTable is an exception, if you do your C# PivotTable, you will be limited to what Excel offers. As I …

  2. SSRS to PDF - Table of Contents with Page Number

    Feb 10, 2017 · In your scenario, you want to display the table of contents with page number in your report, right? In Reporting Services, we can't generate such a table of content directly because global …

  3. Returning Table (rowset) from Dynamic query

    Mar 12, 2007 · 2 – Obtain a row set (table) type reference pointing the result set of @sql 3 – Select * from [reference variable pointing to the row set of resulting @sql] If SQL Server function would have …

  4. Can't seed identity column while importing Excel into Sql Server

    Jun 16, 2016 · The Enable Identity Insert function should only be used if you are importing data that has an Identity column, and you want to preserve the value. That being said, this can cause problems if …

  5. How to exclude Saturday and Sunday hours while calculating the ...

    May 4, 2011 · Build a calendar table with one column for the calendar data and other columns to show whatever your business needs in the way of temporal information. Do not try to calculate holidays in …

  6. How to get Schema Names in SQL Server 2000 using Dynamic SQL?

    Jul 10, 2012 · Why don't you exaplain from the start what you want to achieve, and maybe we can point you in a much better direction. For instance, what use do you have of getting the output from …

  7. Generate script for dependent objects - social.msdn.microsoft.com

    Apr 1, 2018 · I have over 10 databases in which i have to generate scripts for dependent objects of 6 six tables. Doing it thru the SSMS is very cumbersome. Is there a tool to generate script for dependent …

  8. How to enter expression in a table field? - social.msdn.microsoft.com

    May 11, 2012 · But you cant use it in Access 2007, so its better use a query like Tom said. Still you can use a field in table and if create a form to enter / edit data, you could use a procedure to update that …

  9. Error in Generating script with SQL SERVER.

    Oct 7, 2021 · 2:- task->generates script , but after uploding this script i didnt get any value in server (got all value in local server).. i got only create table script.. in internet server hope understand Saturday, …

  10. Convert VarBinary type to Any Type - social.msdn.microsoft.com

    Aug 15, 2012 · Answers 1 Sign in to vote If you want to convert varbinary to in try cast (varbinaryCol as int) or use Convert (int,varbinaryCol) If you want to use the datatype stored in a table you have to …