Viewing 15 posts - 1 through 15 (of 25 total)
The only way a view would take up any resources is if it were indexed. In the case of an Indexed View you need enough disk space for the index.
December 2, 2011 at 8:56 am
You can use sp_MSForEachDB to iterate through each database.
November 29, 2011 at 2:40 pm
The stored proc code to insert a new category and the lang_id and cat_name is below.
CREATE PROCEDURE uspCategoryInsert (
@LanguageId AS INT
, @CategoryName AS VARCHAR(100)
)
AS
BEGIN
BEGIN TRANSACTION;
BEGIN TRY
INSERT INTO category (cat_name, lang_id)
VALUES...
November 25, 2011 at 4:31 pm
Make sure you save the Script Task before Clicking "Ok" and exiting out.
November 25, 2011 at 12:33 pm
No worries. Someone mentioned the same situation in the comments of the instructions on how to create the linked server. It's the first comment. They bounced the SQL service and...
November 23, 2011 at 2:21 pm
I believe there is an MAS90 ODBC driver that you can download. I would install that and try and set up the linked server. Here are some detailed instructions to...
November 23, 2011 at 11:59 am
The AUTO_CLOSE option is a server option in the model database and not a setting of the database. You can update the setting on your local server with sp_configure.
November 23, 2011 at 11:50 am
I just tried it on my home machine and work machine with no luck.
I found another article that recommended adding a VisualStudioProjectsLocation entry to the Registry under HKEY_CURRENT_USER\Software\Microsoft\Microsoft SQL Server\100\Shell...
November 23, 2011 at 11:35 am
It depends on how or if the data is related. If it is related and you want to enforce referential integrity and implement Foreign Keys which can only be done...
November 22, 2011 at 8:36 pm
This article details how you can change the default directory: http://visualstudiohacks.com/options/changing-the-my-projects-folder-location-and-other-settings-in-ssms/
November 22, 2011 at 8:28 pm
This will list all tables and columns for a database. You can add a filter to return columns for a specified table.
SELECT st.name AS TableName
, sc.name AS ColumnName
FROM sys.tables AS...
November 22, 2011 at 7:47 pm
You can create a linked server: http://community.sagemas.com/t5/Sage-MAS-90-and-200-Extended/SQL-Server-Linked-Server-MAS90-ODBC/td-p/23757
November 22, 2011 at 7:38 pm
Hi Bob,
Can you provide more information? You should be able to write the output from the inner stored proc to the file. Have you tried to eliminate the code around...
November 21, 2011 at 9:23 pm
True, but if you have no experience one way to set yourself apart and demonstrate knowledge, without the experience, is through certification. The certification may help get someone with no...
November 21, 2011 at 12:17 pm
Is it possible to run a Trace and identify all of the existing code that violates the constraints to be added? If you have a QA server with comprehensive automated...
November 20, 2011 at 6:56 pm
Viewing 15 posts - 1 through 15 (of 25 total)