Viewing 15 posts - 16 through 30 (of 30 total)
I just choose the grid for the output then click in the upper left corner and copy the results and paste them into Excel. But not if there are...
January 2, 2014 at 8:40 am
There are learning options on Microsoft's website also, if you search for 'learning' or 'webcasts' you should come up with lots of options.
December 5, 2013 at 8:42 am
I'm not sure that you can. The license pricing is different from cal to core, so I'm not sure how you would handle that. If you have a...
November 22, 2013 at 9:01 am
Have you ever successfully run a query? Is everything else running ok?
If it is only happening on your machine I'd try reinstalling SMS.
November 13, 2013 at 8:35 am
Your version # and all is great, but you need to give us the error message you are getting and any other pertinent information such as what access you have...
October 29, 2013 at 11:56 am
Generally to get a third party app to work you need to follow their directions. It sounds like they want access to the Master database....? I would ask...
October 23, 2013 at 8:21 am
Are you talking about application access to a database, an agent job, or ??? We generally create windows service accounts for both unless an application vendor has a specific...
October 22, 2013 at 5:45 pm
You don't say exactly what it is you are trying to do, but you can bring Excel data into a SQL database using SSIS and you can do whatever with...
October 14, 2013 at 8:40 am
I have the Kindle Fire HD, which has a 7" screen (I think). I do most of my leisure reading (books and magazines) on the Kindle, and do some...
September 27, 2013 at 2:41 pm
Oops, that will insert records into an existing table. Try:
select ID, min(DATEFROM) as date1, max(DATETO)as date2,Color
into newtable from originaltable
group by ID, Color
September 12, 2013 at 9:44 am
An 'insert into' and the new table name will create the table from the results.
insert into newtable
select ID, min(DATEFROM),max(DATETO),Color
group by ID, Color
September 12, 2013 at 8:53 am
Maybe I'm missing something, but doesn't all he needs to do is at the wizard screen 'Select Source Tables and View' select Edit Mappings... and change the datatype there?
August 15, 2013 at 9:50 am
Have you checked out the MSDN site? Search for T-SQL and you can find lists of commands and what they do. There is also good developer centric information too....
August 8, 2013 at 11:47 am
Viewing 15 posts - 16 through 30 (of 30 total)