Viewing 15 posts - 8,611 through 8,625 (of 8,760 total)
Peter2012 (4/8/2014)
declare @TableSpace table
(
TableName sysname
, RowsK varchar(32)
, ReservedMB varchar(32)
, DataMB varchar(32)
...
April 8, 2014 at 2:33 am
Start by adding a data viewer in the Data Flow Task, between the Flat File Source and the destination.
Run the package in debug, if all the rows are shown in...
April 7, 2014 at 10:32 pm
rho_pooka (4/7/2014)
April 7, 2014 at 9:50 pm
First thought, make certain your user has the proper rights on both sql and ssas as a windows user.:cool:
April 7, 2014 at 1:58 pm
SQL Wayne (4/4/2014)
I have VS 2010 installed on a Windows 7 machine. We use this for TFS mainly. I am at a new...
April 7, 2014 at 12:25 pm
Could you detail your setup, looks like there is a missing login for the SSAS on the Sql Server.
😎
April 7, 2014 at 12:05 pm
call.copse (4/7/2014)
April 7, 2014 at 12:00 pm
inevercheckthis2002 (4/7/2014)
INSERT INTO visited
VALUES
(N'Home', N'Kim'),
(N'Contact', N'Kim'),
(N'Products', N'Kim'),
(N'Home', N'Joe'),
(N'Contact', N'Joe'),
(N'Home', N'Pam'),
(N'Home', N'Sam'),
(N'Contact', N'Sam'),
(N'Products', N'Sam'),
(N'Home', N'Ray'),
(N'Products', N'Ray),
(N'Home', N'Kim'),
(N'Home', N'Pam'),
(N'Home', N'Sam')
;
(Actually, this did not work, I had to insert each row...
April 7, 2014 at 11:46 am
The nodes() method of the xml datatype makes this straight forward.
😎
DECLARE @X XML
SET @X = '<root>
<production.Categories categoryid="1" categoryname="Beverages" description="Soft drinks, coffees, teas, beers, and ales" />
...
April 6, 2014 at 10:51 pm
Jeff Moden (4/6/2014)
naresh0407 (4/5/2014)
April 6, 2014 at 10:06 am
If you only have few tables to check, do not use sp_MSforeachtable, it executes the statement once for each table in the database, regardless of what ever filtering you use.
The...
April 6, 2014 at 6:43 am
Peter2012 (4/6/2014)
Thanks for your response.
I've checked the given URL and it's not what I'm looking for as it's checking for all tables.
What I want is to check for certain...
April 6, 2014 at 4:38 am
naresh0407 (4/6/2014)
Hi..I am using sqlserver 2008
In Sql Server 2008 the support for multi document type / multi format document files is very limited and some workarounds are needed. Without using...
April 6, 2014 at 3:26 am
lmarkum (4/1/2014)
April 6, 2014 at 12:50 am
What version of SQL Server / SSIS are you using?
April 6, 2014 at 12:14 am
Viewing 15 posts - 8,611 through 8,625 (of 8,760 total)