Viewing 15 posts - 1,096 through 1,110 (of 1,233 total)
INFORMATION_SCHEMA columns do not have exactly the same information as sys.columns, but it may work depending on the need. Overall, sql server 2000 just does not have all of the...
April 17, 2013 at 10:58 am
Maybe the clustered index that re-arranged the pages created disk fragmentation?
April 17, 2013 at 10:49 am
Also be sure your column emp_status does not contain nulls or else a
emp_status !='01'
will not return the nulled columns. I don't know if this is the intended behavior.
April 17, 2013 at 10:45 am
So you deleted a local user account? Be careful this does not cause issues in other areas.
April 17, 2013 at 10:32 am
Hi,
the total of contracts started in that year, having status different than '101', divided by the total of contracts ended in the previous year
Look into the function "ParallelPeriod" in...
April 11, 2013 at 5:11 pm
The US post office has a NCOA (national change of address) service. They in the process maintain a standardized version of US addresses. There are companies that buy/rent this data...
April 11, 2013 at 4:56 pm
Model your business processes, that will light what are your facts and subsequently your dimensions. If you are familiar with your business this shouldn't trouble you too much.
April 11, 2013 at 4:48 pm
Certainly. Code repository systems work on this concept.
April 11, 2013 at 4:38 pm
there is a record for every application and what term they are starting in, among other things
I wouldn't be surprised if the OP has something similar looking in the relational...
April 11, 2013 at 4:36 pm
I don't believe the forum users in general like the idea of clicking on obscure links.
April 11, 2013 at 11:35 am
Might incorporating this work?
select case when isnumeric(left(DCPI_Date,4))=1
then DCPI_Date
else '19000101'
END
when doing your insert into dbo.Reliance_Master
Then later in your SSIS redirect those rows that have 1900-01-01 as the date to...
April 11, 2013 at 11:33 am
I'm sure this is not the case, but thought I should mention: make certain the ID column in your audit table is not a identity column.
April 11, 2013 at 11:08 am
Even if it does cause potentially more network traffic as a result of normal usage, that is the point of creating the connection from server A to B was to...
April 4, 2013 at 11:51 am
If a sixth column/price gets added or a new product in the family, with 'price 5' rather than 'price5' you will miss data, have to keep maintaining the query. That...
April 4, 2013 at 11:42 am
I had seen this error when I was processing tons of records on a virtual machine. My solution was breaking the query down into batches. That is, using a loop...
April 4, 2013 at 11:25 am
Viewing 15 posts - 1,096 through 1,110 (of 1,233 total)