Viewing 15 posts - 1,246 through 1,260 (of 7,429 total)
Here is an example of several methods you can use for each case within an ActiveX transformation.
Option Explicit
Dim strName, arValues, strSuffix, strLastName
'------------------------------------------------------------'
'/ City, State /'
strName = "Pittsburgh,PA"
Comma_Pair strName, arValues
MsgBox arValues(0)...
February 25, 2005 at 8:52 am
I bet it helps with burnout also.
February 25, 2005 at 6:26 am
Or just simply
RIGHT('00000' + RTRIM([fieldname]), 5)
As you don't really care if it is already 5 it will be five either way when done.
February 25, 2005 at 6:24 am
IT would be helpfull if you could provide a few examples of the data. Such as
Turner,Bob S MD
Or
Bob S Turner MD
Just so we know what format you are dealing...
February 25, 2005 at 6:21 am
Without having somewhere to test and the fact I don't have a server setup with log shipping I do believe they are nothing more than transaction log backups which means...
February 23, 2005 at 8:12 am
The query engine performs better when using = values as opposed to != or <> so rewtire the previosu like so.
select RecordType, Quantity_Ord = case when RecordType = 20 then Quantity_Ord...
February 23, 2005 at 8:08 am
I have no idea of the stats for all the work I have done because a lot of objects have been created and redesigned, sometimes there were new objects, sometimes...
February 23, 2005 at 8:01 am
I will say that I keep a credit card with a low limit for purchases where the card will leave my sight such as resturants. But low and behold a...
February 23, 2005 at 7:45 am
I would look at one of these options. It is basically the same thing but more native to SQL itself and means you might can even avoid the temp table.
February 23, 2005 at 7:30 am
Ok so does MyTable exist in the database the user is connected to or is it another? If the same and is owned by DBO then all the SP of...
February 22, 2005 at 9:11 pm
There is a devleoping standard for it in the ISO-11179 standards.
February 22, 2005 at 8:54 am
Just another option.
First Off I am assuming ProjectID is Unique in Project and ProjectId is Unique per EmployeeId in EmployeeProject (meaning an employee can only be associated once).
However if the...
February 22, 2005 at 6:58 am
From what I can tell it only works for a few items such as items under Objects events, Stored Procedures events and Transactions events. I have never seen work for...
February 22, 2005 at 6:42 am
I am curious as to further detail. The way it looks I would say why not just make a direct call to the table. This looks lik an over complication...
February 22, 2005 at 6:30 am
There is a lot in BOL but basically don't think of it as the objects and data changing it is the pages that are backed up. When a page has...
February 22, 2005 at 6:02 am
Viewing 15 posts - 1,246 through 1,260 (of 7,429 total)