Viewing 15 posts - 5,221 through 5,235 (of 11,678 total)
Are you trying to use a linked server, or trying to login into a local server? If the last one, is the sa account enabled?
August 12, 2013 at 6:36 am
Probably because they were never executed at all.
The compiler noticed a syntax error in your script, so it gives an error straight away.
August 12, 2013 at 6:34 am
This thread lists of few possible solutions:
http://stackoverflow.com/questions/63291/sql-select-columns-with-null-values-only
August 12, 2013 at 6:31 am
lshanahan (8/12/2013)
CSV files can also alleviate some headaches from newer versions of Excel, which don't always play so well with SSIS 2005.
The older versions of Excel also don't play nice...
August 12, 2013 at 5:50 am
jamie 82947 (8/11/2013)
August 12, 2013 at 2:56 am
When you save a query, it is saved as a .sql file on your hard drive.
This is typically in the My Documents\SQL Server Management Studio folder. You can organise your...
August 11, 2013 at 2:15 pm
You need to join the student table with the absence table, do a count on the absence date and divide this by 10.
August 11, 2013 at 2:10 pm
DECLARE @minDate DATE = '2010-01-01';
DECLARE @maxDate DATE = '2013-04-01';
SELECT DATEADD(mm,6 * number,@mindate) AS ResultDate
FROM master.dbo.spt_values
WHERE type = 'P' AND DATEADD(mm,6 * number,@mindate) < @maxDate
ORDER BY number asc;
I used...
August 11, 2013 at 2:06 pm
Too easy 🙂
Simply by thinking "Express won't have any feature that standard hasn't", you could already devise the correct answer.
Great question to start the week!
August 11, 2013 at 1:56 pm
Jeff Moden (8/9/2013)
techmarimuthu (8/9/2013)
Difference between CAST and Convert functions in SQL SERVER??
My recommendation would be to get into SSMS and press the {f1} key. There's a whole lot of...
August 11, 2013 at 12:45 pm
Mark-101232 (8/9/2013)
Koen Verbeeck (8/8/2013)
August 9, 2013 at 6:07 am
Why don't you post your code, so we know what we're dealing with.
August 9, 2013 at 5:42 am
Not an expert in bcp format files, but you can use a query in BCP, so I would do the formatting there.
August 9, 2013 at 5:05 am
You need to specify the server as well in your bcp command line.
August 9, 2013 at 4:52 am
Viewing 15 posts - 5,221 through 5,235 (of 11,678 total)