Viewing 15 posts - 196 through 210 (of 359 total)
I was trying to use a conditional split to filter out data based on a timestamp column for Getdate()-3 and I am getting this error.
The data type "DT_DBTIMESTAMP" cannot be...
January 28, 2012 at 9:36 am
I also faced a requirement today similar to what you had... and I was successful in implementing all the ideas I told and the url on how to use FOR...
January 19, 2012 at 9:19 am
The issue is because of data in the tables. Identified the bad data and deleted it and created the foreign key and it got created without error.
January 18, 2012 at 7:05 pm
Table A was:
CREATE TABLE [dbo].[Workspaces](
[WorkspaceId] [uniqueidentifier] NOT NULL,
[Name] [nvarchar](50) NOT NULL,
[IsMultiLanguage] [bit] NOT NULL,
[IsMultiUseCase] [bit] NOT NULL,
[IsAllowAlternateMapStrings] [bit] NOT NULL,
[AccountId] [uniqueidentifier] NULL,
CONSTRAINT [PK_Workspaces] PRIMARY KEY CLUSTERED
(
[WorkspaceId] ASC
)WITH (PAD_INDEX...
January 18, 2012 at 11:54 am
Will be thankful if you can shed some light on me.
January 18, 2012 at 10:35 am
Yes... You are right... its waiting on a key to stop the console...is there anything that can be done to stop the console at the registry level while the console...
January 18, 2012 at 7:17 am
I am able to open the blg file on my system normally.
January 17, 2012 at 8:12 am
No Problem. I have DDL Triggers in place now.
Thanks.
January 13, 2012 at 11:39 am
Thanks for the urls. I will run the profiler with events mentioned in your blog and check.
January 10, 2012 at 7:55 am
Thanks for the response Gail.
At this point of time the recompilation is not the issue but since it is adding overhead on memory I was looking at them. Also I...
January 9, 2012 at 4:44 pm
Oops you are right...I was off track for sometime...I changed the isolation level to RCSI not only to prevent the concurrency issues but also to prevent dirty reads.
Thanks Gail
January 6, 2012 at 8:47 am
Hey Guys..I have a quick question here..Looking at my deadlock graph and the isolationlevel being serializable which query is using the isolation level as serializable? the update or select? per...
January 6, 2012 at 8:20 am
Check if DB Shrink is part of your backup maintenance plans or anyother.
January 5, 2012 at 2:25 pm
Yes. I am currently stuck and had a discussion with the developers on the change in isolation level.
Thanks Gail and Michael.
January 4, 2012 at 6:41 pm
Viewing 15 posts - 196 through 210 (of 359 total)