Viewing 15 posts - 6,196 through 6,210 (of 7,168 total)
It was a joke, but so are your posts, I thought we were being funny 😛
Why don't you address ChazMan's thoughts about this not being a real-world scenario?
If it's homework,...
June 7, 2011 at 12:34 pm
Here is the answer:
SELECT 'abcd'
June 7, 2011 at 12:21 pm
aaroww11 (6/5/2011)
2. Service broker
MySpace successfully implemented a distributed database using Service Broker in 2009 to replace a very complex replication scheme. They were probably the majority, if not the sole...
June 7, 2011 at 12:19 pm
This thread basically explains what I was thinking you would have to do but I would call it a workaround if anything...not really an elegant solution by any means.
http://social.msdn.microsoft.com/Forums/en-US/sqlintegrationservices/thread/d85668b6-2981-4b1c-978d-227483d03bae/%5B/url%5D
June 7, 2011 at 12:07 pm
SSIS 2005 or 2008?
June 7, 2011 at 11:59 am
Is the database instance on Server1 a named instance?
Some things to look into:
Is SQL Browser running on Server1?
Is port 1434 open between Wrokstation1 and Server1? Use PortQryv2 to find out.
Does...
June 7, 2011 at 11:47 am
Looks like homework...
Lookup the NULLIF and COALESCE functions.
June 7, 2011 at 11:21 am
Elliott Whitlow (6/7/2011)
June 7, 2011 at 11:17 am
SQLRNNR (6/7/2011)
check out these guys http://www.sqlskills.com
That's who I thought of first too and it's why I asked about current level...immersion training is not for beginners. I went to one of...
June 7, 2011 at 11:12 am
For this example you can use a simple UNION:
Setup:
IF OBJECT_ID(N'tempdb..#tbl') > 0
DROP TABLE #tbl;
GO
CREATE TABLE #tbl
(
foreign_curr CHAR(3),
local_curr CHAR(3),
period CHAR(2),
yr SMALLINT,
ytd_ave_rate...
June 7, 2011 at 11:05 am
The School of Hard Knocks is the best one I have found.
For formal training:
> Are you willing to travel?
> How long have you been working with SQL Server and...
June 7, 2011 at 10:56 am
Please post DDL for your tables, DML to add some test data that lets your query demonstrate the problem, and your expected results. If you're not sure what I mean...
June 7, 2011 at 10:16 am
Do tell why you decided to use a loop. Also, please provide the DDL for TableA and TableB.
June 7, 2011 at 10:12 am
Viewing 15 posts - 6,196 through 6,210 (of 7,168 total)