I need to rename a databases data file. Is this possible through SQL Server Management Studio?
FYI, I do not have permissions to the underlying box.
Edit: I also need to change the location of the file.
...
Hi there,
I have a machine that's not connected to a domain and I want to connect to server in that particular domain and I do have proper credentials to log on.
I used runas command as follows: runas /netonly /user:domain\domain_username ssms.exe
and I was able to connect to the server which otherwise I could not.
The weird thing is...
Using the SQL Server Import and Export wizard in Management Studio 2005 I've encountered a big problem. After selecting a set of tables whose data I want to copy (specifying Delete Rows in Existing Tab and Identity Insert in the mappings) I execute the wizard and my rows from one database are nicely copied into my identical but previousl...
I'm working with a SQL server and several databases. Each database may have many schema's, such as dbo., admin., other., and I'm getting tired of scrolling around trying to find things.
If I'm working on a schema specific project, I want to filter out everything else from my view except that schema. As dbo, I see everything which means ...
It would appear that the functionality to add shortcut keys in SSMS2008 is mostly implemented, however, I don't seem to be able to shortcut key to anything.
For example,
Tools --> Customize --> Commands --> File --> New Query
Clicking on New Query and pressing the "Keyboard..." key simply opens up the Options screen. (In most MS IDE'...
SQL Server Mgmt Studio is driving me crazy.
If I create a view and SELECT '*' from a table, it's all OK and I can save the view.
Looking at the SQL for the view (eg.by scripting a CREATE) reveals that the 'SELECT *' really is saved to the view's SQL.
But as soon as I reopen the view using the GUI (right click > modify), SELECT * is rep...
My database server is using 100% of the processing all of a sudden and it doesn't seem like I have any more traffic on my sites. What can I do to look where the increased traffic is coming from inside of SQL Server Management Studio?
...
I'm having a terrible time exporting SQL Server Management Studio Express tables to the Go Daddy webserver. Go Daddy support can't help either. I started by using Microsoft Database Publishing Wizard for SQL Server thinking it would be 'easy'....not! I ran into user/password errors even though I was using the user and password that wa...
In SSMS 2008, when I expand the tables folder, all i see is the "System Tables" folder.
In SSMS 2005, when I connect to the exact same database with same account, I expand the tables folder and see all my tables. Has something changed with which tables are displayed by default? Does it only show tables in the default schema by defau...
a schema change was made on a production server that generates feeds to our parters, removing two bytes from a field, which clobbered our partner's jobs.
my boss wants a notification mechanism to propagate schema changes to everyone, but instead of writing something, id like to get the schema change history report exposed on sharepoint ...
I'd like to be able to convert SQL Server query plans from XML to images. Ideally a vector format, but a bitmap would do.
Is there an open source library to do this? Or can I use one of the SQL Server Management Studio DLLs?
Thanks.
...
Where is the configuration manager for SQL Express 2005? I need to configure SQL Server for TCP/IP but there is no configuration manager with the package. I see SQL Server Database Publishing Wizard, I see SQL Server Migration Assistant for Access, but no Configuration Manager. According to the MSDN, there should be one. I've even lo...
I would like to be able to see the Identity Specification (not as worried about seed/increment) and hate having to scroll around on the column properties panel.
Is it possible to add a column next to Allow Nulls in the table designer for Identity Specification? Specifically I am concerned with MS SQL Management Studio 2008.
...
Hi,
I have two tables, one table has rowguid column and other has auto incremented column but both tables dont have primary key or foreign key. I want to create third table that store the relationship between above two tables. can somebody give me the correct and easiest way to do that. i m new using sql server. please reply me
...
can anyone please tell me the right way to insert values in the rowguid column of the table? I m using sql server management studio
...
I'd like to modify the appearance of the query window in SQL Server Management Studio based on which database I'm currently connected to. For example, using a yellow background for production databases. Is there a way to do this?
UPDATE:
Is there also a way to change the default color of the query status bar at the bottom (when a serv...
In SQL Server 2008 Management studio, I can hit F5 to execute everything in the current query window. I can also highlight a query, and hit F5 to run that highlighted query.
Instead of having to highlight a query, is there a way I can run the single query my cursor is on, or run a query my cursor is on up to a the first ';'?
...
When I have a result set in the grid like:
SELECT 'line 1
line 2
line 3'
or
SELECT 'line 1' + CHAR(13) + CHAR(10) + 'line 2' + CHAR(13) + CHAR(10) + 'line 3'
With embedded CRLF, the display in the grid appears to replace them with spaces (I guess so that they will display all the data).
The problem is that if I am code-generating ...
Hello,
I have a query that returns a large 'ntext' result. I want to copy this over to a plain text editor (Notepad), but only a part gets copied over.
I tried increasing Query Options -> Results -> Text, but the max seems 8192, which is insufficient for me.
Any ideas on how this can be achieved?
I'm using SQL Server Management Studi...
Hi
I want to paste a string with more than two lines into a nvarchar(max) cell
(right click a Table in Sql Server Management Studio 2008 --> Edit Rows).
Unfortunately only the the first line of the string is pasted into the cell.
I know, I could write a Insert/Update script for that, but it's not what I'm looking for. I need a quick w...