Viewing 15 posts - 46 through 60 (of 88 total)
Probably Deny ALTER to [role] might help but then the role created won't serve the purpose that it meant to. Therefore please do not execute this....
Let us wait to hear...
March 5, 2014 at 12:12 am
I could be completely wrong here but I guess in reporting services configuration manager under E-mail Settings tab SMTP server must be set to have this enabled for that instance...
March 4, 2014 at 3:38 am
Can you please post what did you try till now ?
Have you tried taking the backup of the database in the shared folder of your laptop. (assuming you are connected...
March 4, 2014 at 1:54 am
If values > 0 are to be viewed then in that case why not bring values > 0 only ?
March 4, 2014 at 1:47 am
Probably something like
DECLARE @T DECIMAL(10,2) = 1055263.55
SELECT ROUND(@T/100000,2)
March 4, 2014 at 12:41 am
Silly me .. I was trying with MERGE... It was so simple with CTE. Thank you @Koen Verbeeck
March 4, 2014 at 12:37 am
Could you please post DDL for table, some sample set and the expected O/P for the same ? This will help us understand and to work on the problem better.
March 4, 2014 at 12:05 am
If I understood your question correctly then MERGE statement should solve your problem. Please take a look at http://msdn.microsoft.com/en-us/library/bb510625.aspx
March 4, 2014 at 12:02 am
I'm not sure if I understood your requirement correctly or not but I feel dynamic SQL is what you are looking for ...If yes then something like following should serve...
February 19, 2014 at 2:20 am
Please take a look at
http://www.sqlservercentral.com/articles/Integration+Services+(SSIS)/95353/
February 13, 2014 at 2:07 am
Did you try using SSIS log provider for SQL server ?
February 13, 2014 at 2:03 am
In that case you would be able to join but it won't guarantee the output you are looking for ... Instead output will completely depend on how ID values are...
February 13, 2014 at 1:56 am
Have you tried using SP_MSforeachDB ? A vague code using it is written below...Please see if this helps
EXEC sp_MSforeachdb
'
IF EXISTS( SELECT 1 FROM SYS.DATABASES WHERE NAME LIKE ''%LETTER IN DB...
February 13, 2014 at 12:35 am
Viewing 15 posts - 46 through 60 (of 88 total)