Viewing 15 posts - 76 through 90 (of 669 total)
Can you call the procedure in SQL Server Management Studio without any error?
June 18, 2012 at 4:23 am
Write this code in a stored procedure and then call the procedure. Also, what version of SQL Server are you using. Also, is this error result appearing in the SSMS?
Run...
June 18, 2012 at 4:16 am
You have not yet replied. Paste the SQL and the sample data you are using.
June 18, 2012 at 4:03 am
What data set is the DENSE_RANK() giving you. Also, paste the SQL you are using.
June 18, 2012 at 3:56 am
Check this thread http://social.msdn.microsoft.com/forums/en-US/sqlreportingservices/thread/4b7fe6f4-abf9-46ce-be5c-d655f1f87fbb
June 18, 2012 at 3:50 am
If you have AdventureWorks installed. Try this.
select
[New Rank] = DENSE_RANK () OVER(order by FactInternetSales.orderdatekey)
, *
from FactInternetSales
June 18, 2012 at 3:47 am
A class of functions in T-SQL called as Windowing Function can be used to get the desired result as in your case. You must also understand the scenario where to...
June 18, 2012 at 3:19 am
The correct syntax is:
Select {Measures} ON COLUMNS,
{Dimensions} ON ROWS
FROM <<cube_name>>
WHERE
(any_slicers)
June 8, 2012 at 4:39 am
The usual practice what I have observed is "crude". The FTP initiates at certain time during the day, which is believed that the FTP host server will have the files....
May 29, 2012 at 3:15 am
Thanks for the feedback.
The FTP Task does not supports SFTP. Infact, there is no native support to SFTP as yet. Hence, a third party task or a custom code...
May 29, 2012 at 2:32 am
Any project even a package to load text data to SQL Server tables can be very resourceful to explore the insights.
Check this link:
http://www.mssqltips.com/sqlservertutorial/207/creating-a-simple-ssis-package/
May 28, 2012 at 12:15 am
Yes I know, so the original poster should also know who mentions about test engines.
May 25, 2012 at 5:46 am
What do you mena by "data is available"? Do you get load in terms of a flat file which you process. Please share more info. so as to facilitate us...
May 25, 2012 at 5:03 am
Viewing 15 posts - 76 through 90 (of 669 total)