Viewing 15 posts - 1,006 through 1,020 (of 1,124 total)
Assuming that, the column JoinDateQuery will only have two values i.e. "(select hiredate from employeeInfo)" or "(select getdate)" then you can define a bit column HasHireDate instead of JoinDateQuery,...
--Ramesh
October 25, 2007 at 4:47 am
The job failed. The Job was invoked by User sa. The last step to run was step 1 (AddRecord)
Check, for what reason the step 1 (AddRecord) of the job is...
--Ramesh
October 25, 2007 at 4:12 am
MAXRECURSION will not only restrict the recursion but also raises an error when it exceeds the specified value or the default value. You can overcome this by adding a...
--Ramesh
October 25, 2007 at 3:34 am
Maverick (10/25/2007)
"The Full Text Search service is also known as Microsoft Search if you're looking for it under...
--Ramesh
October 25, 2007 at 1:43 am
Nisha,
I think you should think of implementing full-text indexing capabilities.
--Ramesh
October 25, 2007 at 12:56 am
I've been in this situation a few months ago, whereby i need to calculate the time difference between the entry and exit times....:hehe:
I resolved the problem by just adding column...
--Ramesh
October 25, 2007 at 12:46 am
You can use EXECUTE SQL Task and inside it you can have global input/output variables...
SELECT ? = COUNT(*) FROM Table1 WHERE DateSubmission IN (SELECT DISTINCT DateSubmission FROM Table2)
WHERE the value...
--Ramesh
October 25, 2007 at 12:22 am
Use ROW_NUMBER()....
SELECT*
FROM(
SELECTROW_NUMBER() OVER( PARTITION BY AffiliateID ORDER BY AffiliateID, insertDate DESC ) AS RowNum,
Comments, AffiliateID
FROMtblAffiliatePaymentComments
) ao
WHERERowNum = 1
--Ramesh
October 25, 2007 at 12:09 am
Yes you can...
select XMLColumn1, XMLColumn2
from XMLTable
FOR XML AUTO, ELEMENTS, XMLSCHEMA ('Product')
--Ramesh
October 25, 2007 at 12:02 am
Its not a good idea to have an index on a varchar(255) column specially when the table contains 700k records, instead of it you can add an identity column and...
--Ramesh
October 24, 2007 at 11:50 pm
Maverick (10/24/2007)
The full text index uses the Microsoft Search service. It is recommended that it should run under the Local System Account.
I have two questions here
1>>Does it only works...
--Ramesh
October 24, 2007 at 11:22 pm
Use sqlcmd which is new in 2005, isql, osql or bcp
--Ramesh
October 24, 2007 at 11:15 pm
Elie Chedid (10/24/2007)
thanks a lot for the hint.I actually did install SP1 for IE just few minutes ago and now am re-installing SQL 2005.
I guess this was the issue.
regards
You don't...
--Ramesh
October 24, 2007 at 3:25 am
Check if you've Microsoft Internet Explorer 6.0 SP1 or later, as it is required for SQL Server Management Studio, Business Intelligence Development Studio, and the Report Designer component of Reporting...
--Ramesh
October 24, 2007 at 3:01 am
Yes you can...
just add the column in the SELECT statement of the WITH clause..
WITH myCTE
AS
(
.....
)
SELECT RecursiveLevel FROM myCTE
--Ramesh
October 23, 2007 at 7:50 am
Viewing 15 posts - 1,006 through 1,020 (of 1,124 total)