Viewing 15 posts - 3,976 through 3,990 (of 5,103 total)
Ahh..
but what advantage are you getting doing that ?
why not just create an index if is query speed what he is looking for?
oh well ... let him say what's the purpose
April 8, 2005 at 11:56 am
>> I have no desire to know this DB that intimately <<
Then you shouldn't be doing DBA work on it ![]()
April 8, 2005 at 11:50 am
>>Once the Index + Data gets moved to a new place, how can I verify this?
Is there any SQL that tells me that the data has really moved?<<
April 8, 2005 at 11:48 am
what is the problem with
alter table [tblname] drop column [colname]
alter table [tblname] add [computedcolumn] as newformula
note: If you have schemabound objects you will have to remove the binding first
hth
April 8, 2005 at 11:42 am
I hate maintenace Plans. Even though you get a nice GUI there is no way to SCRIPT them and that helps a lot for server rebuilds!
April 8, 2005 at 10:50 am
Congratulations Frank!
In my home country this is called: B E E R !!!
Cheers
![]()
April 8, 2005 at 8:43 am
Full Backup of 2TB every day with 3rd party tools and to TAPE !!! ![]()
![]()
exec sp_update_resume
April 7, 2005 at 11:08 am
IF
Then:
Change the SPs...
April 7, 2005 at 10:54 am
Yep,
"EXISTS" does not look at the field list at all it only check the "JOIN"s and the "WHERE" clauses
Cheers!
April 7, 2005 at 9:58 am
>>I need to generate, for each record, the corresponding missing history records with the correct sequence values.<<
the way to do that is to CROSS JOIN your table with all possible...
April 7, 2005 at 9:52 am
There is one more alternative though ![]()
Use FULL OUTER JOIN between the two table and check pk nullability to determine source
April 7, 2005 at 9:43 am
I still don't think you need a cursor and I would need DDL to write a set based solution. But to answer your question you can get around that limitation...
April 6, 2005 at 8:17 am
this may help you getting started ![]()
SELECT POAttachment.AttachmentNameUnique
, POAttachment.POID
, POAttachment.POAttachmentID
, @Att1 = (case when (select count(*) from POAttachment a
...
April 6, 2005 at 8:11 am
>>View: Well, a view simply isn't identical to a table, client or not, and if you try to insert something into a view the error that will pop up will...
April 6, 2005 at 7:47 am
Viewing 15 posts - 3,976 through 3,990 (of 5,103 total)