Viewing 15 posts - 4,921 through 4,935 (of 5,103 total)
if the rows are delimited by CRLF all you have to do is COUNT the number of CRLF in the file and loop through all of them.
This is Fairly easy...
December 10, 2003 at 3:29 pm
December 10, 2003 at 3:15 pm
if the idea is to put information into the log only you may want to use xp_loginfo
December 10, 2003 at 3:09 pm
quote:
... , AND maybe AS with WITH ENCRYPTION AS.
Be careful with THAT replacement...
December 10, 2003 at 7:57 am
One suggestion:
Can you create 4 columns that get populated at the Update or Insert time from the visit date column. With that you will get rid of MOST your converts!!
and...
December 10, 2003 at 7:16 am
Frank Kalis would recommend you read this
Frank are you there?
December 9, 2003 at 3:25 pm
quote:
The only thing I'll say about alias is if you have to later drop the login, you may be tearing your hair...
December 9, 2003 at 3:15 pm
quote:
Thank you very much! It is almost what I need.I have approximately 2 million ID's, and I need the MAX(year) for each...
December 9, 2003 at 2:53 pm
db_ddladmin as Brian said is the answer to the first problem
there are two things you can do to take care of the ownership
1. REPLACE OBJECT OWNER
at the end...
December 9, 2003 at 2:19 pm
can you specify what kind of error are you trying to catch?
I can't wait for yukon structured exception handling
December 9, 2003 at 1:57 pm
if the package owner has password protection and you don't know it, AFAIK you are out of luck
but if no owner password was assingned all you have...
December 9, 2003 at 1:51 pm
SELECT LEFT(Manager_Name, CHARINDEX(' ', Manager_Name, 1) -1)
December 9, 2003 at 1:20 pm
The Concern here is that cascade delete is a VERY destructive action.
Suppose you have a hierarchy of 3 tables and all are "cascade enabled on delete" and you delete...
December 9, 2003 at 1:08 pm
You haven't show me any examples but I think
you can create 3 separated table-valued functions based on parameters.
with that in mind you can use those as Parameterized Views
and your...
December 9, 2003 at 11:29 am
Viewing 15 posts - 4,921 through 4,935 (of 5,103 total)