Viewing 15 posts - 2,656 through 2,670 (of 13,462 total)
and to recap, all users, since they are in the public role, have access to master and tempdb;
however what they see in the master database is limited by permissions, and...
January 15, 2014 at 11:34 am
Perry Whittle (1/15/2014)
PearlJammer1 (1/15/2014)
looks like a complicated process to implement. I'm going to have to give this some serious thought.:-):-)
What?
Identitfy the Live tables that require obfuscating (there's likely only a...
January 15, 2014 at 5:36 am
also, can you tell us if you are sysadmin in the connection that SSMS/ object explorer is using ?
there's a lot of code in SSMS that assumes that you are...
January 14, 2014 at 2:42 pm
this is sort of similar to a question i asked the other day:
http://www.sqlservercentral.com/Forums/Topic1530825-363-1.aspx
i wanted to grab 1-N queries and use SSIS to send them to a multi sheet excel document;
because...
January 14, 2014 at 12:40 pm
sqlserver.exe is the name of the executable that is running under the SQL service; it is the absolute core and is critical to SQL server...heck it IS sql server.
if you...
January 14, 2014 at 12:29 pm
for a specific table, it's the ALTER permission; that obviously means they can add/drop columns as part of the table as well.
GRANT ALTER TABLE on dbo.TableName to MyUser
i belive if...
January 14, 2014 at 12:03 pm
New Born DBA (1/14/2014)
Someone emailed me about "why SQLSERVR.EXE process is limited to about 128MB of RAM and it...
January 14, 2014 at 12:00 pm
can't really predict the output, since this poll has all incorrect answers.
kudos for the easily copy-and-pasteable code, it produces results that basically looks like a christmas tree, i guess.
but the...
January 14, 2014 at 9:51 am
probably the easiest way is to stick the query into a subquery, featuring row number, and then filter the results.
SELECT
*
FROM (SELECT
...
January 14, 2014 at 9:42 am
not really;
the actual SQL plan allows us to review deep details of the plan, and tell if stats are out of date, which columns were used, which indexes, and so...
January 14, 2014 at 7:29 am
for this query, i think we'd need to see the actual execution plan on this, as well as a list of all indexes on the fctAssetFulfillment and the FulfillmentPartnerInstall...
January 14, 2014 at 7:19 am
Luis pointed it out i think; the assignment must be a static value or constant;
a convert cannot be used, even if it was a static date, nore getdate,
and when you...
January 13, 2014 at 2:11 pm
it's not possible for a foreign key to reference a different database.
foreign keys can only be created within the same database as the two tables exist in.
it's possible to...
January 13, 2014 at 6:08 am
well, if there is a view or stored procedure that references a different database or a linked server, you can query for that.
take a look at the view sys.sql_expression_dependencies,...
January 13, 2014 at 5:25 am
Thanks for looking Phil!
pretty sure the office is using vs2008 for ssis and ssrs, so that's probably 2008; i couldn't seem to find a 2008 SSIS forum.
Ironically, i had done...
January 11, 2014 at 6:02 am
Viewing 15 posts - 2,656 through 2,670 (of 13,462 total)