Viewing 15 posts - 106 through 120 (of 532 total)
That would really be more of a Subversion question than a SQL Server question. There is no reason that it would be impossible to deploy to SQL Server through...
October 27, 2011 at 10:52 am
You would be more likely to get relevant help on Microsoft Access if you're in the forum for Access ... http://www.sqlservercentral.com/Forums/Forum131-1.aspx. Good luck.
October 26, 2011 at 6:35 pm
There is an easy and efficient method to do this using "FOR XML PATH". Do a search on XML path concatenation and you should find some good examples.
October 26, 2011 at 6:32 pm
Try a google search on "dynamically create files in ssis" and you'll get a lot of information complete with code examples.
October 26, 2011 at 11:34 am
I vaguely remember something about there being issues with this kind of query not returning any values for fields in which the value is actually an array (i.e. potential multiples...
October 26, 2011 at 11:04 am
Try this ...
where (CLREFER.ZIP = @ZIP or @ZIP = '')
and MWAPPTS.ADATE between @FIRSTDATE and @LASTDATE
I don't work with Reporting Services much, so I don't know if the @ZIP = ''...
October 25, 2011 at 4:05 pm
Using a coalesce in a joining or filtering condition is almost always a bad idea. You're going to end up with a full scan on the table in question....
October 25, 2011 at 1:10 pm
You can find out some info on your proc through the DMV sys.dm_exec_procedure_stats. The cached_time field would give you an idea of when it was changed because it would...
October 25, 2011 at 12:06 pm
Some things you might want to consider:
You could use an int and add leading zeros at the presentation layer. Generally, this would be done within the application that is...
October 22, 2011 at 11:09 pm
Understand that the number of times the function is going to be called is dependent on whether or not it's correlated with the outer query (and some other more complex...
October 20, 2011 at 3:19 pm
You can join on sys.schemas ...
SELECT s.name + '.' + o.name
FROM sys.objects o
JOIN sys.schemas s
ON s.schema_id = o.schema_id
WHERE o.type = 'U'
AND LEFT(o.name, 3) NOT IN ('sp_', 'xp_', 'ms_', 'dt_')
September 2, 2010 at 3:08 pm
If the columns you want to return are variable depending on input then your options on the SQL side are either to use dynamic sql or use if blocks to...
August 27, 2010 at 10:43 am
I know you're new to this forum ... please see the link in my signature for information about how to post questions with test data included so that people can...
August 26, 2010 at 3:38 pm
Please don't cross-post as that just wastes people's time. The original thread can be found here.
August 25, 2010 at 4:28 pm
LEN is used for such a task, CAST and CONVERT are not. Is this a homework assignment?
August 24, 2010 at 12:30 pm
Viewing 15 posts - 106 through 120 (of 532 total)