Viewing 15 posts - 121 through 135 (of 1,124 total)
Mayank Khatri (5/27/2009)
I apologise for missing that, thanks for taking out time and really appreciate your work. Thanks for sharing :-).
It's okay, no need of apologies after all we are...
--Ramesh
May 27, 2009 at 9:11 am
Mayank Khatri (5/27/2009)
--Ramesh
May 27, 2009 at 8:50 am
If it is that kind of urgency, try this link http://lmgtfy.com/?q=export+query+results+to+excel+file+in+sql+server+2005+using+T-SQL
--Ramesh
May 27, 2009 at 7:43 am
I am wondering;-) why this post is exactly the same as this one
--Ramesh
May 27, 2009 at 7:34 am
I am not sure what you tried to do here but technically you cannot declare and set variable values in that fashion. Otherwise, you can use table variables to...
--Ramesh
May 27, 2009 at 7:13 am
I am not sure whether it's a prerequisite or not but I can use the excel connection managers on my server without any problems.
--Ramesh
May 27, 2009 at 6:53 am
Well, the error means that the application is trying to insert no value or null value into the column "Topic_ID" which seems to be a non-nullable column in the table....
--Ramesh
May 27, 2009 at 6:51 am
You can use sp_tables_ex procedure to execute distributed queries or use system objects like "INFORMATION_SCHEMA.TABLES" or "sys.objects" in conjunction with "sys.schemas".
Here are few ways of doing it.
SELECT*
FROMOPENQUERY( TestServer, 'SELECT TABLE_NAME,...
--Ramesh
May 27, 2009 at 6:35 am
The problem is with the table qualifier used in the ON Clause for column "Employee Number".
.....
FROM HRSELECTDB.selecthr.dbo.[Employee Master Table Data] AS [Employee Master Table Data_1] INNER JOIN
dbo.Employees ON dbo.[Employees Master...
--Ramesh
May 27, 2009 at 5:10 am
Using ROUND function...
SELECT CONVERT( NUMERIC(18,2), ROUND(1245.65879, 2, 1) )
--Ramesh
May 20, 2009 at 5:49 am
Gianluca Sartori (5/20/2009)
Divide by zero error:
select *
from @tmpTab
where (column1/column2 = 1)
OR column1 = column1
No error thrown:
select *
from @tmpTab
where (column1/column2 = 1)
...
--Ramesh
May 20, 2009 at 5:40 am
I follow the same as Gail mentioned except that I take out the first letter from each word from the song name + artist name from a list of my...
--Ramesh
May 20, 2009 at 1:17 am
First of all, for all your future posts read this article on how to post questions to getter better responses[/url]
Secondly, thanks arjun for preparing sample data and the scripts
Lastly, here...
--Ramesh
May 20, 2009 at 12:57 am
Mark Fyffe (5/19/2009)
--Ramesh
May 20, 2009 at 12:13 am
To publish a report from VS or BIDS to a report server, go to project properties > Set the "TargetReportFolder" & "TargetServerURL" in "Deployment" properties.
Examples:
TargetServerURL = http://MyReportServer/ReportServer
TargetReportFolder = http://MyReportServer/ReportServer/devCRM
To view...
--Ramesh
May 19, 2009 at 10:14 am
Viewing 15 posts - 121 through 135 (of 1,124 total)