Viewing 15 posts - 9,436 through 9,450 (of 15,381 total)
john_edman24 (1/31/2013)
February 1, 2013 at 8:57 am
duplicate thread. Direct replies here. http://www.sqlservercentral.com/Forums/Topic1414381-1291-1.aspx
February 1, 2013 at 8:55 am
You don't want to use datepart(day...) here. That will return the day of the month. You want to use datepart(weekday...)
I like to use the full word instead of the abbreviation...
February 1, 2013 at 8:43 am
One other point is that if you use a unique constraint to function like a primary you MUST have the column defined as NOT NULL.
create table dbo.Car (
CarID int...
February 1, 2013 at 8:30 am
computer.mike (1/31/2013)
February 1, 2013 at 7:54 am
What is the error message?
January 31, 2013 at 3:17 pm
saxena200 (1/31/2013)
--The underlying IV Not working, kindly help
---------------------------------------------------
[/quote
"Not working" is not very descriptive. I am guessing you are getting "Must declare the scalar variable.." message???
I reformatted your code so it...
January 31, 2013 at 3:13 pm
paul.j.kemna (1/31/2013)
I have tried a bunch of those tags and they all still process the HTML tags in my example.
So put in a space or an underscore or something so...
January 31, 2013 at 2:36 pm
computer.mike (1/31/2013)
January 31, 2013 at 2:18 pm
vlad-548036 (1/31/2013)
why do you have a table that has nothing more than a single identity column?
the sole purpose for it is to generate unique sequential numbers...
January 31, 2013 at 2:16 pm
Snargables (1/31/2013)
I was planning...
January 31, 2013 at 2:11 pm
SQL_Enthusiast (1/31/2013)
I don't understand the need for the table creation....
January 31, 2013 at 2:09 pm
Can't help but post Lowell's handywork.
January 31, 2013 at 2:01 pm
paul.j.kemna (1/31/2013)
Oh my gosh how do i post this text field contents without it running the HTML tags???
I think if you put it inside the code tag it should work...
January 31, 2013 at 1:58 pm
Then you can combine that with Dwain's logic and voila!!!
;WITH Actions (message) AS (
SELECT '20:32:12 [Rachel] Thank you for contacting Our Company....
January 31, 2013 at 1:50 pm
Viewing 15 posts - 9,436 through 9,450 (of 15,381 total)