Viewing 15 posts - 136 through 150 (of 322 total)
Not exactly sure what you want but here goes
First result - users in BOTH tables
Select *
FROM
INNER JOIN UserProfile
ON [User].UserID=UserProfile.UserID
Second result - users only in table
select *
from
where...
May 18, 2009 at 6:45 am
Look up the following books:
The Data Warehouse Toolkit
and
The Data Warehouse ETL Toolkit
Both by Ralph Kimball
They are critical resources for any DW designer/developer
May 18, 2009 at 5:58 am
Brandie Tarvin (5/18/2009)
May 18, 2009 at 5:55 am
SQL? MDX? Reporting Services? Excel? Table structure?
Need a few more details pal!
May 18, 2009 at 4:52 am
I think you'll have to stop using the wizard!
Create your own data source view (DSV), you can create named queries in place of tables and generate the source for the...
May 18, 2009 at 4:47 am
Mark (5/18/2009)
No need for dynamic SQL
agreed:-)
I got it working without the dynamic SQL 2 minutes later and corrected my post 😀
I can't get your version working though... doesn't return...
May 18, 2009 at 4:19 am
Posted too quick (and I hate not getting something working!!)
declare @xml as xml
set @xml = '
Somevalue1
somevalue2
somevalue3
'
declare @language as int
set @language =...
May 18, 2009 at 4:04 am
Should have added
There is a lot of material here:
May 18, 2009 at 3:55 am
I've not done much with XML so thought I would have a play and came up with this:
declare @xml as xml
set @xml = '
...
May 18, 2009 at 3:55 am
If you're a non-profit org then it might be worthwhile having a nice word with red-gate 🙂
have a look here:
for a table diff utility
May 15, 2009 at 7:57 am
the following should help:
Select *
from tableA
where case
when @Type = 'Lname' then Lname...
May 15, 2009 at 7:51 am
All my Fuzzy lookup packages are on laptop which is at home...
Try these instead
have a look here:
http://www.sqlteam.com/article/using-fuzzy-lookup-transformations-in-sql-server-integration-services
and here:
May 15, 2009 at 7:24 am
dump the results into a temp table
DECLARE @db_id SMALLINT;
DECLARE @object_id INT;
SET @db_id = DB_ID(N'Wallet0000');
SET @object_id = OBJECT_ID(N'dbo.AuditCollection');
IF @db_id IS NULL
BEGIN;
PRINT N'Invalid database';
END;
ELSE IF...
May 15, 2009 at 7:21 am
Red gate offer a tool for comparing SQL Server database schema, its very well priced at $245 too
I'm not aware of any free tools, although (and without wanting to...
May 15, 2009 at 7:18 am
I use the following:
right('00'+cast(datepart(month, getdate()) as varchar), 2)
means only 1 reference to the date column
May 15, 2009 at 6:58 am
Viewing 15 posts - 136 through 150 (of 322 total)