Viewing 15 posts - 1,111 through 1,125 (of 1,233 total)
File groups could help if you do frequent data backups on this VLDB where you can back up each devise simultaneously. I don't read that you need to do this.
March 28, 2013 at 10:40 am
Is there a way except advanced editor to change the data type of all columns of excel source in one shot instead of doing for every columns one by one...
March 27, 2013 at 11:21 am
If you are calculating the average value and then showing in the report, just use the FormatPercent function in the expression.
--Divya
This is fine if the value is still a ratio,...
March 27, 2013 at 10:51 am
SELECT
CASE WHEN LEFT(Customer.StartDate, 2) = '98' THEN substring(convert(varchar(20),Customer.StartDate), 3, 2)
...
March 25, 2013 at 12:58 pm
When you use 'like' you are opening the door to multiple rows being fetched. Why could you not pass the exact table name? Your issue may be more upstream.
March 25, 2013 at 12:45 pm
You can import the data as a string and in the dataflow manipulate the string in a derived column transformation to put it into yyyymmdd format, and append that to...
March 20, 2013 at 11:27 am
The user account used for SQL Services has to have local admin privileges and the Log on as a Service right.
March 20, 2013 at 11:12 am
Based on your data flow, did you encrypt the copy of ssn columns and then tried throwing that encryption value into an Excel cell? This may be causing your error...
March 19, 2013 at 11:07 am
Stop SQL Server and restart it in single user mode. Then from management studio right click the master database and and use this menu to restore form your backup device....
March 18, 2013 at 11:26 am
You may need to coordinate with your IT group. Sometimes the Exchange server ( I assume it is Exchange) may have rules that do not accept messages from unknown domains...
March 18, 2013 at 10:59 am
The lookup function is not available in SSRS 2005. Wondering if the OP still has this issue.
March 18, 2013 at 10:46 am
I would add the group id that the employee is in to the dim user table as well. This will allow group counts.
March 18, 2013 at 10:40 am
The user wants to compare this year to last. You can create two temp tables representing counts this year and last, grouped on date (no time portion) and status....
February 28, 2013 at 3:26 pm
Hi. Is there been any updates on this matter?
February 27, 2013 at 10:28 am
Viewing 15 posts - 1,111 through 1,125 (of 1,233 total)