Viewing 15 posts - 256 through 270 (of 1,248 total)
Pre-installation:
1. New IP for your new instance;
2. New Storage for the new instance;
3. New Resource group on your cluster if it is for an active/active cluster;
Installation:
1. Install SQL Server on...
July 11, 2008 at 10:00 am
As far as I know, you need to create views in order to grant permission on a column-level.
July 11, 2008 at 9:54 am
July 11, 2008 at 9:51 am
Based on your description, you should use MERGE replication. You can limit the user accessing your web server to have insert permission only. You just set the permission to these...
July 11, 2008 at 9:45 am
As far as I know, using the built-in replication utility is OK.
July 11, 2008 at 9:42 am
How about the script below?
SELECT * FROM syscolumns WHERE id=OBJECT_ID('Orders') WHERE name LIKE '%ID%'
You need to replace the table name, Orders, by yours.
July 11, 2008 at 9:38 am
I cannot see any code in red. Could you use italics or bold?
When you mentioned that your view is called more than once, could you include this part of script?
July 11, 2008 at 9:34 am
Could you post your script?
To draw attention by more people, you may post this question to SQL 2005 column since SSIS belongs there?
July 11, 2008 at 9:30 am
When your job is hanging, you may run the following scripts to check whether or not there is any task running against your server.
sp_who2 active
SELECT * FROM master..sysprocesses
Pay special attention...
July 11, 2008 at 9:27 am
Here is my cent.
How many times did you run your job in QA? Only the first time when you run your job in QA may give you correct information. After...
July 11, 2008 at 9:24 am
Now is the KEY WORD IN VB. If you simply use DOS command, you may try DATE. If you use either OSQL or ISQL, you may try to use GETDATE()...
July 10, 2008 at 11:50 am
If you would like to constain how much an instance uses, you can set in the properties of instances. If you would like to look into what processes are consuming...
July 10, 2008 at 10:59 am
My guess is, your objects have different names after altering them from 'table' to 'schema.table' . You may have to grant permissions again.
July 10, 2008 at 10:20 am
You may try the following command to see what components are on your server.
%ProgramFiles%\Microsoft SQL Server\90\Setup Bootstrap\ARPWrapper.exe /remove
July 9, 2008 at 1:25 pm
GRANT db_ddladmin, db_datareader, and db_datawriter. If you would like the user has permission to execute stored procedure, you may grant EXECUTE permission to it. If you would like the user...
July 9, 2008 at 1:22 pm
Viewing 15 posts - 256 through 270 (of 1,248 total)