Viewing 15 posts - 211 through 225 (of 455 total)
You need to follow the steps to restore your database.
1. Restore your database from the most recent FullBackUp File.
2. Apply the differential backups that were taken after the most recent...
October 23, 2006 at 3:35 am
With '<' condition Mark's solution should work perfect for your requirement.
If you want to go with the IN Clause this may work for you..
DECLARE @SpreadSelect as int
SELECT @SpreadSelect = 0
SELECT...
October 17, 2006 at 5:19 am
What is that you are trying to gain out of this Foreign Key Relationship?
October 16, 2006 at 1:54 am
What is the purpose of your index, do you want to create a Clustered Index/Non Clustered Index? Is it on a single column or multiple columns? What is your basic...
October 6, 2006 at 5:50 am
INSTEAD of applying SUM on your aggreate item (100$) in your example, why don't you SUM up the line item column (25$) in your aggreate expression? Could be I am...
October 6, 2006 at 5:21 am
I believe there is a typo in the above post.COAELESCE should be replaced with COALESCE.
October 6, 2006 at 5:11 am
As far as my knowledge goes, manipulating the page breaks dynamically at the runtime is not possible in SSRS.
October 6, 2006 at 5:06 am
There is no specific keyword or function in SQL Server that will help you with your desired output, only way out would be have an additional column in your table...
October 6, 2006 at 5:03 am
`Try this
SELECT * FROM Sales WHERE status = 8
AND DATEADD(dd,DATEDIFF(dd,0,shipdate),0) = DATEADD(dd,DATEDIFF(dd,0,GETDATE()),0)
First check if status =8 is returning any rows without date filter.
October 6, 2006 at 4:38 am
In the above example for Scope = Nothing, you may want to pass the Group expression for which you want to find the Running Totals.
October 6, 2006 at 1:04 am
If you have defined the column as Datatime Datatype and if you are seeing NULL values in the column then it should be returning some values for the query posted...
October 4, 2006 at 1:24 am
I completely Concur with Jeff's solution. Its better to avoid conversions and go with Jeff's solution.
October 4, 2006 at 12:03 am
Or precisely if you want it in Datetime datatype
Select CAST(convert(VARCHAR(10),Getdate(),(121)) AS SMALLDATETIME)
October 3, 2006 at 11:03 am
Select convert(VARCHAR(10),Getdate(),(121))
October 3, 2006 at 11:02 am
Try this
Select convert(smalldatetime,Getdate(),(110))
October 3, 2006 at 10:52 am
Viewing 15 posts - 211 through 225 (of 455 total)