Viewing 15 posts - 16,576 through 16,590 (of 26,484 total)
YSLGuru (3/10/2010)
homebrew01 (3/10/2010)
YSLGuru (3/9/2010)
What has been said so far in each reply is...
March 10, 2010 at 11:26 pm
SQLDBA-973159 (3/8/2010)
I have SQL Server installed on an application server for a given...
March 10, 2010 at 3:12 pm
Matt Miller (#4) (3/10/2010)
Jeff Moden (3/9/2010)
March 10, 2010 at 2:46 pm
sharon macdonald (3/10/2010)
Hi,I am writing a trigger in T-SQL against an application. Each update stmt returns VERY different results and I'm not clear on why.
Starting with this query
This statement...
March 10, 2010 at 2:23 pm
Okay, I must be getting cynical in my old age. Thanks.
March 10, 2010 at 10:54 am
KTG (3/10/2010)
But how do I know the order which the data in the view is ordered? I mean if table 1 is indexed on column 1, indexed on table...
March 10, 2010 at 10:48 am
Okay, I need some opinions here as I may be getting cynical in my old age. Please tell me if you think this is a compliment or a sarcastic...
March 10, 2010 at 10:36 am
I am assuming the database is NOT using the SIMPLE recovery model. How often are you running transaction log backups? These will clear out inactive transaction log records.
At...
March 10, 2010 at 10:24 am
If the underlying tables are properly indexed the views should work well, as long as you don't have multiply nested views.
March 10, 2010 at 10:20 am
This one is actually pretty simple:
create table dbo.MyTest1 (
ID int,
Machine char(2),
StartTime datetime
);
insert into dbo.MyTest1
select 1, 'M1', '2010-03-10 15:00:00'...
March 10, 2010 at 10:13 am
Steve Jones - Editor (3/10/2010)
March 10, 2010 at 10:01 am
Personally, I think every table should have a surrogate key as either a Primary Key (PK) or Alternate Key (AK). Especially when using a natural key for the PK....
March 10, 2010 at 9:49 am
I won't (but someone else might). You need to try writing it first and if you have problems, show us what you have done and we will help you...
March 10, 2010 at 9:33 am
Paul_Harvey (3/10/2010)
Hopefully an easy one for somebody in "the know".
I have a table with some 75 fields, that acts as a staging table for incoming data feeds.
I want to...
March 10, 2010 at 8:59 am
Viewing 15 posts - 16,576 through 16,590 (of 26,484 total)