Withdata Software

Producing high-quality database tools

Main menu

Skip to primary content
Skip to secondary content
  • Withdata
  • Blog
  • Categories
  • Tags
  • Tools

Tag Archives: Sql Server

Post navigation

← Older posts
Newer posts →

Withdata Software Released MsSqlToAccess Version 2.1

Posted on June 5, 2013 by Shiji Pan

Withdata software has announced mssqltoaccess 2.1, a data conversion tool that export ms SQL Server data to access. MsSqlToAccess 2.1 add “Execute Sql from Command line”, add “Check Update” to menu, improve importing performance. MsSqlToAccess, Better tool for export SQL ... Read more

Posted in DBToDB | Tagged Access, DB To DB, MsSqlToAccess, Sql Server

Withdata Software Released DB2ToMsSql Version 1.2

Posted on June 5, 2013 by Shiji Pan

Withdata software has announced db2tomssql 1.2, a data conversion tool that convert DB2 data to SQL Server database. Version 1.2 add “Execute Sql from Command line”, add “Check Update” to menu, improve importing performance. DB2ToMsSql – Convert DB2 data to SQL ... Read more

Posted in DBToDB | Tagged B2, DB To DB, DB2ToMsSql, Sql Server

Withdata Software Released AccessToMsSql Version 2.1

Posted on June 5, 2013 by Shiji Pan

Withdata software has announced accesstomssql 2.1, a data conversion tool that import Access data to ms SQL server. AccessToMsSql 2.1 add “Execute Sql from Command line”, add “Check Update” to menu, improve importing performance. AccessToMsSql, Better way to import Access ... Read more

Posted in AccessToMsSql | Tagged Access, AccessToMsSql, DB To DB, Sql Server

Replace (Update/Insert) a row into SQL Server table

Posted on June 4, 2013 by Shiji Pan

In MySQL,  we use “ON DUPLICATE KEY UPDATE” to either updates or inserts a row in a table. How to do it in SQL Server? Just like this: if not exists (select 1 from employees where employee_id = 1) insert into employees (employee_id,last_name,first_name) values ( 1,'smith', ... Read more

Posted in Sql Server | Tagged merge into, replace into, Sql Server, upsert

Remove duplicate rows in SQL Server

Posted on May 31, 2013 by Shiji Pan

Assuming no nulls, you GROUP BY the unique columns (eg. col_1, col_2, col_3), and SELECT the MIN (or MAX) Row ID (eg. row_id) as the row to keep. Then, delete everything that didn’t have a row id: DELETE my_table FROM my_table LEFT OUTER JOIN ( SELECT MIN(row_id) as row_id, col_1, ... Read more

Posted in Sql Server | Tagged Remove duplicate rows, Sql Server

How to get column names from Sql Server table

Posted on May 30, 2013 by Shiji Pan

SELECT [name] AS [Column Name] FROM syscolumns WHERE id = (SELECT id FROM sysobjects WHERE type = ‘U’ AND [Name] = ‘My_Table_Name’) Type = ‘V’ for views Type = ‘U’ for tables For SQL Server 2008, we can use information_schema.columns for getting ... Read more

Posted in Sql Server | Tagged get column names, Sql Server

Edit Sql Server LOB data

Posted on September 20, 2011 by Shiji Pan

SqlLobEditor is a database tool that can edit SQL Server LOB data directly. Use SqlLobEditor, you can edit SQL Server LOB visually. And you can save LOB data to file and edit also. Easy to use Edit LOB (LOB, CLOB) data directly. Edit multiple formats LOB data(text, RTF, image, hex, html, ... Read more

Posted in SqlLobEditor | Tagged LOB, MsSql, Sql Server

Wizard For Importing CSV Data To Sql Server

Posted on September 7, 2011 by Shiji Pan

First, you need and install TxtToSql. TxtToSql is a tool to import CSV data to Sql Server database. Using TxtToSql you can import CSV data to Sql Server easily and fast.   Wizard for importing txt (csv) data to Sql Server Click “Wizard – Import From File” at task ... Read more

Posted in TxtToSql | Tagged CSV, import, MsSql, Sql Server

Sql Server Export Text File

Posted on September 6, 2011 by Shiji Pan

First, you need and install SqlToTxt. SqlToTxt is a tool to export Sql Server data to text file. Using SqlToTxt you can export Sql Server data to text file easily and fast.   Export Sql Server data to TXT – 2 steps Click “Export Table” button. then show the Export Single ... Read more

Posted in SqlToTxt | Tagged export to txt, MsSql, Sql Server, Sql Server export, TXT

Sql Server Export to Sql File

Posted on September 6, 2011 by Shiji Pan

First, you need and install SqlToTxt. SqlToTxt is a tool to export Sql Server data to sql file. Using SqlToTxt you can export Sql Server data to sql file easily and fast.   Export Sql Server data to sql – 2 steps Click “Export Table” button. then show the Export Single ... Read more

Posted in SqlToTxt | Tagged export to sql, extract sql, sql, Sql Server, Sql Server export

Post navigation

← Older posts
Newer posts →

Recent Posts

  • TextMerger 1.0 Released: A Lightweight Cross-Platform Tool for Fast Text File Merging
  • FileToMongo 5.0 Released: Enhanced Stability, Speed & HTML Table Support
Withdata Software. ©2004 - 2026 All rights reserved.