Viewing 15 posts - 1,636 through 1,650 (of 8,731 total)
I got this working with the Quirky update. To learn more about how to make this work read the following article: http://www.sqlservercentral.com/articles/T-SQL/68467/
Be sure to understand how it works before...
January 20, 2017 at 2:10 pm
Maybe something like this:
SELECT LEFT( SecondName, CHARINDEX( ' ', SecondName) - 1) AS FirstName,
SUBSTRING( SecondName, CHARINDEX( ' ', SecondName) + 1, 800) AS MiddleName,
January 20, 2017 at 1:47 pm
Can I...
January 20, 2017 at 11:40 am
January 20, 2017 at 6:21 am
January 19, 2017 at 1:13 pm
I executed the below command to extract the login to a .sql file.
sqlcmd -E...
January 19, 2017 at 11:49 am
I'm producing a server...
January 19, 2017 at 9:52 am
January 18, 2017 at 1:12 pm
January 18, 2017 at 11:23 am
You're assigning string values to dates. You need to define the variables to assign values and then use the variables to send their values as parameters to the procedure.
January 18, 2017 at 8:23 am
January 18, 2017 at 7:46 am
I could post an untested solution, but why give you the fish when I can share a fishing course with you. Take a look at this article:
January 17, 2017 at 12:23 pm
January 17, 2017 at 7:07 am
I saw the "Select 2" after submitting my answer. :unsure:
January 13, 2017 at 7:30 am
Viewing 15 posts - 1,636 through 1,650 (of 8,731 total)