SqlServer Management Objects
0
votes
1answer
25 views
failed to retrieve data for this request - listing SQL Servers with SMO
DataTable dataTable = SmoApplication.EnumAvailableSqlServers(false);
comboBox1.ValueMember = "Name";
comboBox1.DataSource = dataTable;
i am trying to populate a combobox control with a list of ...
1
vote
3answers
61 views
Programatically find and apply schema differences on SQL Server
I have a product that I'm currently authoring that relies on SQL server for the backend. One issue I'm trying to resolve is to improve the 'upgrade' story. So v1 will have a particular schema and v2 ...
0
votes
0answers
62 views
Need help connection with Microsoft.SqlServer.Management.Smo Transfer class
I am trying to copy everything (data, indexes, triggers, stored procedure). From one database to another in C#.
Here is my code:
SqlConnection connection = new SqlConnection(ConnectionString);
...
0
votes
2answers
55 views
C# SMO Select from Database
I have been racking my brain trying to figure out how to execute a SELECT from Table using SMO in C# and returning that value to a string item.
I have seen multiple posts of how I can run a SQL ...
0
votes
1answer
17 views
SMO SQL job creation and clustered servers - as simple as I think it is?
As part of our deployment process, we use SMO to create SQL jobs programmatically on the server as part of the configuration needs to be dynamic, and it also makes the entire process automatic for us. ...
0
votes
0answers
23 views
Access SMO using java
I want to be able to access SMO using java. Is there any easy way to do this like a third party library?
My objective is to create backups of my MsSQL 2008 database and be able to restore them. Is ...
0
votes
0answers
14 views
WEKA: there is an option to print the graphs of SMO, IBK classifiers?
In J48 classifier, there is an option to print the graph and make a view in JFrame, using j48.graph().
there is an option to get the graphs of SMO or IBk classifiers too?
or maybe in some other ...
0
votes
0answers
73 views
PowerShell MSSQL SMO Scripter - Script inserts on filtered data
I am trying to generate data inserts that are filtered based on column data. We have no problems scripting out all of the data using the scripter.Options.ScriptData and using the EnumScript method. ...
0
votes
0answers
50 views
ServerConnection | Backup Restore with Microsoft.SqlServer.SmoEnum Error - FileNotFoundException
I have written this code using references after googling a bit, however while executing BackupDatabase(myfilename.bak) it gives me error at line no. 11 and says:
FileNotFoundException was unhandled
...
0
votes
0answers
15 views
Sharing transactions with an SMO Connection
How does one share transactions with an SMO server connection? Sharing connections is as simple as
var connection = new SqlConnection();
var serverConnection = new ServerConnection(connection);
var ...
0
votes
0answers
60 views
Unable to find Microsoft.SqlServer.BatchParser
I have a 32 bit SQL 2008 R2 Express installed on a Windows 2008 64 bit server.
The 32 bit Microsoft.SqlServer.BatchParser.dll is in c:\windows\assembly.
I have a third party application installed ...
1
vote
0answers
158 views
Restore database from bak file with new database name
I need to create copy of database with new name. In my asp.net mvc project I use smo to create backup of database and than try to do restore. I do like this: ...
0
votes
0answers
25 views
How to populate mvc model using smo
The data for an mvc model must come from SQLServer using SMO (to get a list of databases, and the schemas for each of them). I already know the how to get what i need(the smo part),
My main problem ...
0
votes
1answer
108 views
How to check if SQL Server 2012 Shared Management Objects (SMO) is installed
To configure an install assistent, I have to check if SQL Server 2012 SMO is already installed. I found some answers for older versions of SQL Server (e.g. here and here) with the solutions to check ...
0
votes
2answers
53 views
Why isn't my method returning any valid SQL Server instances?
I have a piece of code that is supposed to return all instances of SQL Server installed on my machine. It looks like this:
DataTable dtLocalServers = ...
1
vote
1answer
70 views
How to compare POCO class with Database?
I need to compare what's on my POCO classes against my database.
I am currently using Microsoft Roslyn and Microsoft.SqlServer.SMO and comparing the data, in my opinion, 'roughly'. It's working ...
0
votes
0answers
41 views
Smart management object fail to transfer script in C# and sql server 2008
I am creating some scripts from an sql server database and I am getting an exception when scripting drop statements for my database.
I get an FailedOperationException in the code bellow at the line ...
0
votes
0answers
44 views
Creating db schema slower with SMO than straight SQL? [closed]
If I create a schema (database, tables, columns, stored procs, etc) via SMO objects, it runs about twice as slow than if I run equivalent SQL DDL script. My schema currently has 35 tables, and takes ...
0
votes
0answers
13 views
Create temp Table and delete afterwards original
I would like to dublicate one or more tables. I have many tables in which I have to convert
the datatype from varchar to nvarchar. So I make a test with over 20 millions rows and doing alter with smo ...
0
votes
0answers
49 views
Copying schema and data using SqlServer SMO in C# within a transaction scope
I have a requirement to copy a database in C# code. for this purpose, i have used the Sql Server SMO objects and tested it initially in a separate piece of code. That was working fine. However, when i ...
0
votes
1answer
110 views
Where can I download the SQL Server 2008 SMO dlls
I had the SQL Server 2008 dlls, and I installed SQL Server 2008R2 Feature Pack. Rather than putting them in Program Files/105/SDK, it put them in Program Files/100/SDK and overwrote my 2008 SMO dlls.
...
0
votes
1answer
28 views
Why does defining a variable of type of Smo.Server cause a 10 second delay
Bear with me here, ok!!
We use SMO a lot to do all kinds of things, including to check for the presence of particular stored procedures in the database. So we have a method in our data access class ...
1
vote
0answers
37 views
VS2010 Extension for database projects
I'm trying to create a VS2010 extension (managed VSPackage) for SQL Server Database Projects.
What I'd like to do is capture the "query executing" event from the Transact SQL editor window:
And ...
7
votes
1answer
147 views
Using LinqPad with SMO
I am trying to use the SMO for Sql Server 2008 R2 Standard, but I am running into an issue whenever I try to Dump an object.
The relevant code:
void Main()
{
var connectionString = ...
0
votes
1answer
71 views
SQL SMO to script INSERT with row constructors
I have written the following PowerShell code to export data from a table as INSERT statements:
[Reflection.Assembly]::LoadWithPartialName("Microsoft.SqlServer.SMO") | Out-Null
$srv = new-object ...
0
votes
0answers
48 views
SMO - Check whether user have permissions, before calling Textbody or Script()
Using SMO, how to check whether logged in user has permissions on the database objects(tables, columns, sps, triggers etc.) before caught by exception?
Here is my problems:
Calling Script() or ...
0
votes
0answers
91 views
Using Microsoft.SqlServer.Management.Smo to get performance metrics
Was wondering how I can programmatically get performance metrics for a given sql server instance or database by using SMO (sql management objects).
Basically similar to what the Activity Monitor in ...
0
votes
1answer
39 views
SMO with script data incredible slow
Here is my code:
var scripter = new Scripter(server);
scripter.Options.ScriptDrops = false;
//scripter.Options.WithDependencies = false;
...
1
vote
1answer
307 views
Which is better to use Invoke-SQLCMD, SMO or SQLConnection
I've been creating a few power shell scripts and Iv'e mainly been using Invoke-Sqlcmd as a way to query the database or input .sql files, but I have been having some trouble with containing access and ...
0
votes
2answers
75 views
SMO Stored Procedure Alter fail
I am trying to alter the parameters in a stored procedure programatically in c#. I came across SMO and have been trying to use it but the alter keeps failing. Here is my code:
//alter parameter data ...
0
votes
1answer
77 views
SQL Server SMO: drop multiple objects with dependencies
Given a set of objects (tables, views, procs, ...) I want to drop all of them and all objects that depend on them.
This requires executing the drop operations in dependency order for both the objects ...
1
vote
1answer
72 views
Connection timeout in SMO
I'm inserting a high volume of rows into a database and trying to establish a primary key on it. If I create the table and establish a key right away, inserting data takes 10x as long even with ...
0
votes
1answer
166 views
LocalDb and SMO - how to choose where to put database files?
I've started to experiment with the SQL Server 2012 feature LocalDb. I'm doing some powershell scripting with SMO against the instances I create, such as creating databases. To do this, I have this ...
0
votes
1answer
110 views
Generating foreign key drop powershell script with SMO
I have the following powershell script to generate a script to drop foreign keys, using SMO ($scripter is a Scripter object, and $db is a Database object):
$scripter.Options.ScriptDrops = $true;
...
0
votes
1answer
69 views
How to alter a table using SMO
I'm using SMO to create table dynamically in Sqlserver 2008.now I would like to add new columns for existing table using SMO, but I'm trying to execute the code the finally getting run time exception ...
0
votes
0answers
55 views
Offline integrity check for sql [closed]
I am looking for a utility for SQL similar ese utility for Exchange which is used for database integrity. Basically I want to validate ldf and mdf files are integrated or not. SMO API for integrity ...
0
votes
0answers
91 views
SQL Server Management Objects SMO to execute sql file
I have a SQL Server Database Project which when deployed generates an sql script. I want to use schema compare to keep the sql script up to date, and then run the script using SQL Server Management ...
2
votes
0answers
144 views
ms sql smo:how to script foreign key WITHOUT “Alter table MyTable check constraint MyForeignKey”
I see server 2008 generated script:
ALTER TABLE [mytable] WITH CHECK ADD CONSTRAINT [fk_mytable_id] FOREIGN KEY([id])
REFERENCES [mytable2] ([id])
ON UPDATE CASCADE
ON DELETE CASCADE
GO
ALTER TABLE ...
0
votes
1answer
193 views
How to enable/disable a Service Broker queue using SMO?
I am using SMO objects to access my database. I have service broker enabled on SQL Server. I was wondering if anyone knew how to enable/disable queue's through code (VB/C#). I've tried ...
2
votes
2answers
447 views
SMO Restore Failed/Cannot Open Backup Device Error
I got an error while I'm trying to restore a SQL Server 2008 R2 database:
Restore failed for Server 'KIMO-PC'.
Code used:
Server myServer = new Server("KIMO-PC");
Database myDatabase = ...
1
vote
2answers
141 views
How can I get and set the description property of a SQL Server 2008 table using SMO?
How can I get and set the description property of a SQL Server 2008 table using Microsoft.SqlServer.Management.Smo? I have seen documentation on how to do this at the column level but not at the table ...
0
votes
0answers
55 views
ExecutionFailureException while retriveing stored procedures using smo
I am trying to retrive a list of stored procedures from SQL Server 2008 using smo.
Here is my code
private Server _serverTest;
private Database _db;
private void getSPs
{
_serverTest = new ...
2
votes
0answers
324 views
smo restore database
I use SQL Server SMO to restore a .bak to a new database, but failed to work.
sql server is 2012 and smo object version is from the latest sdk version 11.0
file .bak was created using sql ...
0
votes
0answers
49 views
Securable for 'dbo' schema for role 'public' is missed, when transferring database objects with SMO
I want to make something like "template" database from some original database.
I'm using SMO (Transfer class in particular).
The built-in role public in source database has securables for these ...
3
votes
2answers
840 views
Execute SQL script from C# and logging errors
I am trying to execute a script (.sql file) on a database from a C# Windows application. The SQL file contains 'GO' statements; this means I am using the object SMO.
I am trying to continue on error ...
2
votes
1answer
941 views
Database collection with smo on sql server 2005, 2008, 2012
I am trying to get a database collection with smo, like this:
var server = GetDatabaseServer();
DatabaseCollection databaseCollection = server.Databases;
foreach (Database database in ...
0
votes
0answers
58 views
SQL Management object in Azure worker role
We are working on an application that uses SQL Azure.
We are going with a single SQL Azure database but for each customer we are creating a separate schema. The tables in all the customer schemas are ...
0
votes
0answers
58 views
How to alter a index column using SMO
I have a DBCompare application using SMO.I comparing two tables columns and if they have any changes i will generate alter script for table like
ALTER TABLE [dbo].[Dept] ALTER COLUMN [Name] ...
0
votes
1answer
2k views
Can i install microsoft sql server 2012 system CLR types on windows XP SP3?
I want to install SharedManagementObjects for SQL server 2012 express on a windows xp sp3 machine that has SQL Server 2008 R2 Express edition but does not have any edition of SQL Server 2012.
But one ...
1
vote
1answer
81 views
How to transfer application role with password?
I need to make a some sort of template from existing database (MS SQL 2012). Template must have identical schema (tables, indexes, roles, etc), but it must not have data from source DB.
To achieve ...



