Viewing 15 posts - 1,636 through 1,650 (of 13,469 total)
that sounds like a [data source] or [shared data source] was added, but does not have saved credentials in it.
check the data source of the report you were prompted with.
July 16, 2015 at 2:16 pm
so you had cross database queries,and because of the migration, one of the databases is now on another server?
if i have that right, i think you can create an empty...
July 16, 2015 at 1:37 pm
i encountered that same error way back when i upgraded.
the error message is pretty clear.
if you post the statement we can show you a lot better, but basically , as...
July 16, 2015 at 12:57 pm
it looks to me like only sys.tables and sys.views have the is_replicated column you are looking for.
select object_name(object_id) from sys.all_columns where name ='is_replicated'
July 13, 2015 at 9:51 am
use sys.objects instead of sys.views, and use a filter on type_desc column; WHERE type_desc IN('VIEW','ETC....)
SELECT DISTINCT type_desc FROM sys.objects
select which types you want to use.
July 13, 2015 at 9:24 am
Abhijit More (7/13/2015)
July 13, 2015 at 6:59 am
lol Jeff that's evil;
i could do it with Excel Automation in a script task, but all the columns would end up being "column1" "column2" because the first row does not...
July 13, 2015 at 5:56 am
Phil Parkin (7/13/2015)
Good stuff. Importing everything as a string makes the task a lot easier, but what do you do about column length?
i iternate through the datatable and determine the...
July 13, 2015 at 5:42 am
i've done this with a script task, but i assume the file always has a header row for the column names, and that i know the delimiters, ie, comma/CrLf, tab/CrLf...
July 13, 2015 at 5:32 am
in SQL7/SQL2000, the Builtin\Administrators group automatically inherits sysadmin in sql instances ont he same server, so if you are in the local administators group on server, you have sysadmin, andn...
July 11, 2015 at 9:53 am
i still have one sql 2000 legacy machine, and i can connect ot it via SSMS, but the original SQL200 installation had two tools, "Enterprise Manager" and "Query Analyzer"
SSMS combines...
July 11, 2015 at 7:57 am
a quick bump on an old post. i just needed to generate some random strings, and had this saved in my snippets. when i tested it, it didn't work,...
July 10, 2015 at 12:19 pm
take a look at the SQL error log; the default for a normal installation is to log failed logins, so you can browse it with SSMS, and find the ip...
July 10, 2015 at 9:19 am
Ray check out this script from my friend Gianluca Sartori; he's posted it several times here on SSC;
he basically takes advantage of how DBCC supports WITH TABLERESULTS, and stuffs the...
July 8, 2015 at 11:24 am
i also use robocopy to copy files out to an additional network location; i like the fact that it is smart enough to only move files that changed.
July 8, 2015 at 8:43 am
Viewing 15 posts - 1,636 through 1,650 (of 13,469 total)