Viewing 15 posts - 10,546 through 10,560 (of 15,381 total)
We are getting there...your ddl doesn't actually run as is.
Try this for the Fact table
create table FACT
(
ID int identity(1,1),
OrderID INT,
relNum int,
DDATe DATE,
BGallons numeric (14,3),
GGallons numeric (14,3),
NGallons numeric (14,3),
MAXBolTime...
September 28, 2012 at 1:33 pm
chinni_16 (9/28/2012)
I was trying with format but I did get the desired results.
It has to be displayed like...
September 28, 2012 at 12:24 pm
Further communication on .NET related questions, should not be under this site(as it will violate the rules maintained here) and this just FYI
Where are you getting this from? There have...
September 28, 2012 at 12:07 pm
Yes there is. The answer starts by reading the first link in my signature.
September 28, 2012 at 11:59 am
Or you could try this undocumented procedure.
exec Insert1000RowsInATableWithoutAnyLoop
September 28, 2012 at 10:06 am
Guras (9/28/2012)
I could but there are certain zones in US that does not adjust the tiem for daylight savings.
Well now there are new rules to your issue. I would not...
September 28, 2012 at 10:04 am
Guras (9/28/2012)
The time value coming from the web application are in their local time zone but ned...
September 28, 2012 at 9:55 am
Guras (9/28/2012)
My server is in...
September 28, 2012 at 9:16 am
SQL_path (9/28/2012)
Sean Lange (9/28/2012)
September 28, 2012 at 9:12 am
Can you post the actual values for your string and the EXACT error message. I don't see anything that would cause an error but I don't really know what the...
September 28, 2012 at 8:53 am
Not enough details to provide much of an answer. What is in @orders? What does the split function look like?
I would recommend using the splitter found in the article...
September 28, 2012 at 8:32 am
The problem is because you have a list of numbers and you are trying to compare that to a uniqueidentifier.
You insert this into a table.
('101038, 101039, 101040, 101044')
INSERT INTO @Tmp...
September 28, 2012 at 8:20 am
What you are describing is what is known as EAV (Entity Value Attribute). This is a horrible design in almost every sense of the word. There are a few cases...
September 28, 2012 at 7:36 am
Using the text right in your error message...
"Full Error Text
-----------------
SQL1031N The database directory cannot be found on the indicated file system.
Explanation: The system database directory or local database directory could...
September 27, 2012 at 12:22 pm
Take a look at this article by Gail about catch-all queries. Your situation is not exactly the same but you can modify the logic presented to handle your complicated sorting...
September 27, 2012 at 12:13 pm
Viewing 15 posts - 10,546 through 10,560 (of 15,381 total)