Viewing 14 posts - 1 through 14 (of 14 total)
I was suffering from the same issue. My problem was resolved by uninstalling management tools, restarting the machine then re-installing the tools.
Win 2012 R2 64bit: SQL 2014...
January 30, 2015 at 7:40 pm
Nice to see the natural side of Steve!
Have a Merry Christmas Everyone!
December 24, 2010 at 8:31 am
Did you use the fixed width file type? Do you actually have more output, it just looks like one row?
This is a common problem with using the...
March 25, 2008 at 2:35 pm
For clarity, are you running a t-sql script outside of the dataflow, and a second copy within the dataflow? Do both produce the same resultset? You said that you are...
March 25, 2008 at 2:13 pm
Nice sample Matt.
Are you using sql2k5? If so take a look at BOL at a recursive CTE's (Common table expressions).
January 16, 2008 at 8:30 pm
How long after the message do you run the DBCC SQLPERF and with which option(s)? Also how is your tempdb setup? What is the growth factor, and the...
January 16, 2008 at 7:13 pm
Have you researched the system databases?
January 16, 2008 at 6:21 pm
I assume you are talking about a SQL logon?
If you are questioning the relationship of the logon in the sysusers entry in the database to a SQL logon...
January 16, 2008 at 6:05 pm
Check out this article
http://www.sqlservercentral.com/articles/Performance+Tuning/2863/
see if this may help any.
October 10, 2007 at 7:28 am
For simplicity sake, is this the output your looking for?
CREATE TABLE #tb1
(
id varchar(10),
date datetime
)
----
INSERT INTO #tb1
SELECT 101,'01/01/2000'
UNION
SELECT 102,'01/01/2001'
union
SELECT 103,'01/01/2002'
union
SELECT 104,'01/01/2003'
----
CREATE TABLE #tb2
(
id1 varchar(10),
id_Plan varchar(10)
)
----
INSERT INTO #tb2
SELECT 101,'A'
UNION
SELECT 101,'B'
union
SELECT 102,'A'
union
SELECT 102,'B'
union
SELECT...
October 9, 2007 at 5:23 pm
And just how do you plan on passing the data to insert or update?
October 9, 2007 at 4:57 pm
Allot would depend on your security standards, data volume, input sources, reporting or other usage of the database(s).
Do you want more of a data warehouse, or data marts.
Do you have...
October 9, 2007 at 4:34 pm
From the output your query is producing try this simple change.
select
h.name as 'DataBase Name'
,t.name as 'Table Name'
,c.name as 'Column Name'
from sys.tables t
inner join sys.schemas h
on h.schema_id = t.schema_id
inner join...
October 4, 2007 at 4:00 pm
Everyone who has posted should be able to receive the points for the day.
Since two answers are correct, how do we accumulate...
March 2, 2004 at 11:50 am
Viewing 14 posts - 1 through 14 (of 14 total)