Viewing 15 posts - 481 through 495 (of 5,103 total)
Apparently the view is either non-updatable or you are sending updates to columns that belong to multiple tables.
February 18, 2009 at 1:51 pm
That's a way too open question.
You should read (A LOT) first about how SQL Server works.
February 18, 2009 at 1:46 pm
Sure! 😀
February 18, 2009 at 1:38 pm
lk (2/18/2009)
I have a PhoneNumber field in which the entries begin with either W: for work or H: for home (e.g., H:607-544-3451). I want to display the field in a...
February 18, 2009 at 1:35 pm
Scott answer should be all you need.
Have you tried it ?
February 18, 2009 at 1:32 pm
DavidB (2/18/2009)
Yes, I believe so. I can't guarantee as I don't handle all object changes but that is our standard and they are set to replicate DDL changes.
If the entire...
February 18, 2009 at 1:19 pm
These columns were propagated to the subscribers using ddl command replication ?
February 18, 2009 at 12:40 pm
Looks like your job account on that step does not have the right permissions to access such object!
February 18, 2009 at 12:38 pm
You must definitely should start using backup compression!
I agree with Ken, 1TB DB is a serious deal, get some help.
A sample:
USE master;
GO
ALTER DATABASE
MODIFY FILE
(
NAME...
February 18, 2009 at 12:29 pm
How would it look if you wanted two rows ?
February 18, 2009 at 12:20 pm
pzmrcd (2/18/2009)
when I execute the following select query..
SELECT * FROM
OpenQuery(ADSI, 'SELECT givenName, sn FROM ''LDAP://DC=test,DC=com'' WHERE...
February 18, 2009 at 12:16 pm
Joe (2/18/2009)
February 18, 2009 at 12:06 pm
winston Smith (2/18/2009)
Ok. so what im doing now is this:
alter database test_DB
set offline
Go
alter database test_DB
modify file
(
name = test_DB,
Filename = N'C:\DatabaseRestoreTest\Files_location\test_DB_temp.mdf'
)
GO
alter...
February 18, 2009 at 11:57 am
DECLARE @Inventory_Trans TABLE (Id INT,Description VARCHAR(800) )
INSERT INTO @Inventory_Trans ( Id, Description )
SELECT 1,'Transfer to location S034R6/MAIN RCVR...
February 18, 2009 at 11:52 am
Viewing 15 posts - 481 through 495 (of 5,103 total)