About 302 results
Open links in new tab
  1. Cannot Deploy SQL Server Database to Azure SQL

    Dec 19, 2017 · To test the Azure SQL Server, I created a database and added a table and connected to it through SSMS and a Microsoft Access ODBC Connection. I am using SQL Server 2016 (not …

  2. Can we create index on msdb database for backupset objects

    Oct 14, 2013 · I am using sql server 2008 with sp3. I want to confirm whether we can create index on msdb database for backupset objects or not. what is the purpose of this ???

  3. ISSUE: Restoring DB from Azure Blob -Error 3: cannot find the path ...

    Mar 16, 2018 · Are you using the Azure Portal to manage the database instances or are you able to connect with SQL Server Management Studio? The below procedure explains the steps to restore a …

  4. SQL Server Management Studio Express - cannot find SQLEditors.DLL

    Nov 21, 2012 · This file does exist and is in the same directory as SSMSEE.EXE (C:\Program Files\Microsoft SQL Server\90\Tools\Binn\VSShell\Common7\IDE). Other context menu items "Script …

  5. Delete All Data Collector objects in Database

    Dec 16, 2014 · In my scenario the database is the collection database of team foundation server, so i need to delete all objects in the database from the data collector, i use the script but also i have …

  6. Error source: Microsoft.VisualStudio.DataTools

    Dec 12, 2008 · You don't have primary keys and sql server tables should never have duplicate rows. Try adding a primary key column to the table.

  7. sql user provisioning tool for vista - social.msdn.microsoft.com

    Dec 12, 2008 · hello i need help i have installed Sql server express 2005 and VB 2005 express as well but i can not access the data base.

  8. Load complex XML files into SQL Tables - social.msdn.microsoft.com

    Jan 25, 2018 · I have requirement to load complex XML file into SQL tables using SSIS. When I added XML source in Data flow Task which show me multiple outputs, it seems not correct, Please suggest …

  9. populate from SQL Server to ListView - social.msdn.microsoft.com

    Aug 18, 2009 · I want to know how can poplulate from SQL server stored procedure into ListView without having to refresh the whole data? I mean just check if the data already displayed then it …

  10. Rebuild Index In a partitioned DB with ReadOnly filegroups

    Jan 22, 2017 · USE [DB]; GO ALTER INDEX [IX] ON [dbo]. [TBL] REBUILD PARTITION =? GO Sunday, January 22, 2017 9:59 AM 0 Sign in to vote DECLARE @TableName sysname = 'MyTable'; …