Viewing 15 posts - 16 through 30 (of 36 total)
your welcome,
maybe in this case your next step is to create a check constraint?
like
ALTER TABLE [dbo].[Table_1] WITH NOCHECK ADD CONSTRAINT [CK_Table_1_T1_2] CHECK NOT FOR REPLICATION (([T1] like...
April 14, 2010 at 8:21 am
timotech (4/14/2010)
April 14, 2010 at 7:27 am
and dont forget to copy the users bevor you copy the database because of orphaned users in the userdatabase.
April 14, 2010 at 6:50 am
Hi,
try this:
drop the constraint first
ALTER TABLE [dbo].[Table_1] DROP CONSTRAINT [DF_Table_1_T1]
then convert and add teh constraint again
April 14, 2010 at 6:19 am
timotech (4/14/2010)
DF_Table_1_Upper DEFAULT N'19000101 00:00:00' FOR Upper
Hi Luci, i don't understand the DF_Table_1_Upper,
should i do this:
ALTER TABLE tbl_TVRates ADD CONSTRAINT
DF_tbl_TVRates_1_Upper_Time DEFAULT N'19000101 00:00:00' FOR Upper_Time
because my...
April 14, 2010 at 5:45 am
the data fits not in the column. so you have to increase the size of the filed to at least 17 characters
e.g nvarchar(17) bevor the update
April 14, 2010 at 5:38 am
and maybe set a default value and not null for the column 😉
ALTER TABLE myPoorlyDesignedTable ADD CONSTRAINT
DF_Table_1_Upper DEFAULT N'19000101 00:00:00' FOR Upper
April 14, 2010 at 5:27 am
If the Script above does not work, you have to check the Upper and Lower fields for invalid data.
e.g. empty (null) or not valid time data
April 14, 2010 at 4:58 am
what is exactly the problem?
the subselect?
April 13, 2010 at 5:31 am
hi,
it's also nice to have the datafiles on the same place when you have to do a restore 😉
you know what i mean if you setup your mirror database the...
April 13, 2010 at 4:39 am
Hi,
easiest way would be to define a client alias.
http://msdn.microsoft.com/en-us/library/ms190445.aspx
regards
February 22, 2010 at 9:21 am
your sql server browser is runing and your TCP potocoll enabled?
strange thing.
im out of ideas..
January 29, 2010 at 6:17 am
still not working? sad to hear 🙁
maybe you have to check for patches etc?
Just to have a closer picture:
your server are in the same domain?
you have the latest...
January 29, 2010 at 5:41 am
Hi,
I think you created the endpoints with the wizzard.
We had the same problem. The names resolution was not the same on the Server. While local it works without domain sufix,...
January 29, 2010 at 4:35 am
don't forget to set up a transactionlog backup job when switching to FULL Recovery
else you have a growing transactionlog
April 17, 2009 at 4:52 am
Viewing 15 posts - 16 through 30 (of 36 total)