Viewing 15 posts - 7,036 through 7,050 (of 26,490 total)
Okay, I was just curious as it is a pet peeve of mine. The semicolon is a statement terminator not a statement begininator.
January 4, 2014 at 10:00 am
Have you tried looking this up in Books Online? While in SSMS press Shift-F1.
January 4, 2014 at 9:50 am
vignesh.ms (1/3/2014)
Query 1:
select *
from Mapping_tbl_1 a,Mapping_tbl_2 b
where iccid_trn between b.from and b.to
Query...
January 4, 2014 at 9:26 am
Eirikur Eiriksson (1/4/2014)
January 4, 2014 at 9:12 am
Jeff Moden (12/31/2013)
Lynn Pettis (12/31/2013)
Assuming this is still true: billed_date datetimeright('0' + cast(month(billed_date) as varchar(2)),2) + '-' + cast(year(billed_date) as varchar(4))
... or...
SELECT RIGHT(CONVERT(CHAR(10),GETDATE(),105),7)
To the OP: And you can learn...
January 1, 2014 at 8:09 am
Now, I have a suggestion. You should get to know Books Online. In SSMS press Shift-F1. There is a lot of good information in there and you...
December 31, 2013 at 6:17 pm
Assuming this is still true: billed_date datetime
right('0' + cast(month(billed_date) as varchar(2)),2) + '-' + cast(year(billed_date) as varchar(4))
December 31, 2013 at 6:15 pm
Because you are now working with SQL Server, not a desktop application.
December 31, 2013 at 1:46 pm
jeandlauro (12/31/2013)
I'm using the SQL Server Import and Export Wizard.Is there a way to write SQL to import from Excel using SS Express?
The import/export wizard uses SSIS behind the scenes....
December 31, 2013 at 10:38 am
Just curious but in which order are you trying to drop them? Sounds like you are trying to drop the functions first then the schemes. Have you tried...
December 31, 2013 at 10:33 am
Congrats to all!!
Looking forward to next year! I'll be back!!
December 30, 2013 at 7:46 pm
We had a database on an Enterprise version of SQL Server 2005. They had tested partitioning and dropped the partitions. While attempting to move that database to a...
December 30, 2013 at 7:44 pm
jeandlauro (12/24/2013)
I am running a POC database on my desktop using SQL Server Express 2012. I have created some triggers that work when I manually run a DML statement but...
December 30, 2013 at 12:13 pm
isuckatsql (12/30/2013)
Since i did not, i deleted the table from the DB and the partitions...
December 30, 2013 at 8:54 am
ChrisM@Work (12/30/2013)
Lowell (12/27/2013)
if you want solid help like...
December 30, 2013 at 7:43 am
Viewing 15 posts - 7,036 through 7,050 (of 26,490 total)