Viewing 15 posts - 9,046 through 9,060 (of 26,490 total)
Your pick:
DECLARE @TestStr VARCHAR(20) = ' Q2ERY56,920 TYEU';
SELECT @TestStr;
WITH eTally(n) AS (SELECT ROW_NUMBER() OVER (ORDER BY (SELECT NULL)) FROM sys.all_columns a CROSS JOIN sys.all_columns b)
SELECT
NewString =...
January 3, 2013 at 4:41 pm
Depends on the OPs actually requirements.
January 3, 2013 at 4:35 pm
You mean something like this?
DECLARE @TestStr VARCHAR(20) = 'Q2ERY56920TYEU';
SELECT @TestStr;
WITH eTally(n) AS (SELECT ROW_NUMBER() OVER (ORDER BY (SELECT NULL)) FROM sys.all_columns a CROSS JOIN sys.all_columns b)
SELECT
NewString...
January 3, 2013 at 4:28 pm
Regarding IsNumeric, you may want to ready this: http://www.sqlservercentral.com/articles/IsNumeric/71512/.
January 3, 2013 at 1:50 pm
I purchased the SQL Server 2012 Developer Edition on Amazon.com for $43.00. Not that much of an outlay to get a full blown version of SQL Server 2012 for...
January 3, 2013 at 10:56 am
yogi123 (1/2/2013)
Jason-299789 (1/2/2013)
this should work
Select * from #temp2
EXCEPT
Select * from #temp1
Thanks for your help
can you please solve another way, so i can implement that in my real logic.
Thanks For Your...
January 3, 2013 at 9:01 am
Thank you Steve for the prize. I will be back next season for sure, have to see if I can threepeat the championship!
January 2, 2013 at 7:23 pm
dwain.c (1/2/2013)
Lynn Pettis (1/2/2013)
dwain.c (1/2/2013)
Tava (1/2/2013)
January 2, 2013 at 7:05 pm
dwain.c (1/2/2013)
Tava (1/2/2013)
January 2, 2013 at 6:02 pm
From http://msdn.microsoft.com/en-us/library/ms179344(v=sql.105).aspx
High-Safety Mode Without Automatic Failover <--- Your configuration
--------------------------------------------------------------------------------
When the partners are connected and the database is already synchronized, manual failover is supported. If the mirror server instance goes down,...
January 2, 2013 at 10:55 am
dwain.c (1/1/2013)
SELECT CompanyName, Type
,Sunday=MAX(CASE WHEN weekday = 1 THEN Val END)
,Monday=MAX(CASE WHEN weekday = 2 THEN Val END)
...
January 2, 2013 at 7:40 am
Disclaimer: I am not a legal authority and the following is only my opinion based on my understanding of the developer license.
Each developer will need a licensed copy of...
January 2, 2013 at 7:01 am
lathish2kumar (1/2/2013)
ERROR:The data types varchar and bit are incompatible in the add operator.CAN ANY ONE KNOW WHAT TYPE OF ERROR IS THIS
CAN U FIND IT PLS
It is in your...
January 2, 2013 at 6:48 am
Check the code used in the job step. Not enough info to really say much more.
January 2, 2013 at 2:43 am
Jeff Moden (1/2/2013)
Lynn Pettis (12/31/2012)
January 2, 2013 at 2:32 am
Viewing 15 posts - 9,046 through 9,060 (of 26,490 total)