Forum Replies Created

Viewing 15 posts - 391 through 405 (of 13,460 total)

  • RE: need list of logins at the server level

    role permissions are cumulative, so if you have anNT user in two roles, one with readwrite, and one with read only, the effective permissions are the sum....readwrite.
    only an explicit...

    Lowell


    --help us help you! If you post a question, make sure you include a CREATE TABLE... statement and INSERT INTO... statement into that table to give the volunteers here representative data. with your description of the problem, we can provide a tested, verifiable solution to your question! asking the question the right way gets you a tested answer the fastest way possible!

  • RE: Sql Logins grouping

    yes of course; what you want is to create a role. assign specific permissions to the role,and then add the users to the role, regardless of whether they are SQL...

    Lowell


    --help us help you! If you post a question, make sure you include a CREATE TABLE... statement and INSERT INTO... statement into that table to give the volunteers here representative data. with your description of the problem, we can provide a tested, verifiable solution to your question! asking the question the right way gets you a tested answer the fastest way possible!

  • RE: need list of logins at the server level

    if you've added any windows_groups, it's still possible that users have access, and have database access, because they login thru group membership,but don't have an explicit login.

    here's a...

    Lowell


    --help us help you! If you post a question, make sure you include a CREATE TABLE... statement and INSERT INTO... statement into that table to give the volunteers here representative data. with your description of the problem, we can provide a tested, verifiable solution to your question! asking the question the right way gets you a tested answer the fastest way possible!

  • RE: List of all dtsx files used in [Integration Services Catalog] - I need help with the SELECT statement

    Sue_H identified the other part of your issue(permissions to fiddle with the registry) : you must run Powershell as Administrator...right click...run as Administrator.

    Lowell


    --help us help you! If you post a question, make sure you include a CREATE TABLE... statement and INSERT INTO... statement into that table to give the volunteers here representative data. with your description of the problem, we can provide a tested, verifiable solution to your question! asking the question the right way gets you a tested answer the fastest way possible!

  • RE: List of all dtsx files used in [Integration Services Catalog] - I need help with the SELECT statement

    because you have not used powershell before, you have to do what the error says and set the execution policy.

    run this command, and then re-run your script.

    Lowell


    --help us help you! If you post a question, make sure you include a CREATE TABLE... statement and INSERT INTO... statement into that table to give the volunteers here representative data. with your description of the problem, we can provide a tested, verifiable solution to your question! asking the question the right way gets you a tested answer the fastest way possible!

  • RE: What is the purpose of dropping temp db?

    NineIron - Wednesday, July 26, 2017 6:43 AM

    I should have mentioned this but, this code begins the procedure. So, there are no...

    Lowell


    --help us help you! If you post a question, make sure you include a CREATE TABLE... statement and INSERT INTO... statement into that table to give the volunteers here representative data. with your description of the problem, we can provide a tested, verifiable solution to your question! asking the question the right way gets you a tested answer the fastest way possible!

  • RE: What is the purpose of dropping temp db?

    that script will drop all temp tables your session actually created;but not global temp tables that are in scope.
    it would be handy for testing the guts of a stored...

    Lowell


    --help us help you! If you post a question, make sure you include a CREATE TABLE... statement and INSERT INTO... statement into that table to give the volunteers here representative data. with your description of the problem, we can provide a tested, verifiable solution to your question! asking the question the right way gets you a tested answer the fastest way possible!

  • RE: List of all dtsx files used in [Integration Services Catalog] - I need help with the SELECT statement

    This script from Microsoft Script Center worked flawlessly for me:
    https://gallery.technet.microsoft.com/scriptcenter/ImportExport-projects-bca5f29f

    I had to change the connection string from localhost to my real servername. I could potentially change the...

    Lowell


    --help us help you! If you post a question, make sure you include a CREATE TABLE... statement and INSERT INTO... statement into that table to give the volunteers here representative data. with your description of the problem, we can provide a tested, verifiable solution to your question! asking the question the right way gets you a tested answer the fastest way possible!

  • RE: Error:SSIS Error Code DTS_E_OLEDBERROR, Error: SSIS Error Code DTS_E_PRIMEOUTPUTFAILED

    he's casting to INT2, which is IBM's as400/DB2/Universe? smallint equivalent i think.
    the logic Phil identified is still the same though, cast to bigint INT8/ and see what is...

    Lowell


    --help us help you! If you post a question, make sure you include a CREATE TABLE... statement and INSERT INTO... statement into that table to give the volunteers here representative data. with your description of the problem, we can provide a tested, verifiable solution to your question! asking the question the right way gets you a tested answer the fastest way possible!

  • RE: Some linked server connections stop working

    adpr0401 i've seen the same issue multiple times since the last...

    Lowell


    --help us help you! If you post a question, make sure you include a CREATE TABLE... statement and INSERT INTO... statement into that table to give the volunteers here representative data. with your description of the problem, we can provide a tested, verifiable solution to your question! asking the question the right way gets you a tested answer the fastest way possible!

  • RE: List of all dtsx files used in [Integration Services Catalog] - I need help with the SELECT statement

    use powershell, it will be easier;
    i googled "powershell export ssis package from integration services catalog" and the first four script hits  all look familiar enough to work for you.

    Lowell


    --help us help you! If you post a question, make sure you include a CREATE TABLE... statement and INSERT INTO... statement into that table to give the volunteers here representative data. with your description of the problem, we can provide a tested, verifiable solution to your question! asking the question the right way gets you a tested answer the fastest way possible!

  • RE: Convert SQL Server schema & Data to Import to MYSQL db.

    tables and views are easyto convert, but procedures that do stuff meta-data wise will require a complete re-write.
    checkdb? kind of equivalents are CHECK TABLE , REPAIR TABLE , ANALYZE TABLE 
    reindex? backup and...

    Lowell


    --help us help you! If you post a question, make sure you include a CREATE TABLE... statement and INSERT INTO... statement into that table to give the volunteers here representative data. with your description of the problem, we can provide a tested, verifiable solution to your question! asking the question the right way gets you a tested answer the fastest way possible!

  • RE: how to deploy 10 T-SQL scripts across 200 databases

    i run something like this that installs all my standard scripts on a given server.
    you are really asking how can i add an outer loop to this, so ii...

    Lowell


    --help us help you! If you post a question, make sure you include a CREATE TABLE... statement and INSERT INTO... statement into that table to give the volunteers here representative data. with your description of the problem, we can provide a tested, verifiable solution to your question! asking the question the right way gets you a tested answer the fastest way possible!

  • RE: List of all dtsx files used in [Integration Services Catalog] - I need help with the SELECT statement

    mw112009 - Tuesday, July 25, 2017 1:23 PM

    Lowell - Tuesday, July 25, 2017 1:13 PM

    Lowell


    --help us help you! If you post a question, make sure you include a CREATE TABLE... statement and INSERT INTO... statement into that table to give the volunteers here representative data. with your description of the problem, we can provide a tested, verifiable solution to your question! asking the question the right way gets you a tested answer the fastest way possible!

  • RE: List of all dtsx files used in [Integration Services Catalog] - I need help with the SELECT statement

    this linky shows how you can peel the orange with a chainsaw:
    instead of simply downloading all the projects and using a text editor to search the *.dtsx files, this...

    Lowell


    --help us help you! If you post a question, make sure you include a CREATE TABLE... statement and INSERT INTO... statement into that table to give the volunteers here representative data. with your description of the problem, we can provide a tested, verifiable solution to your question! asking the question the right way gets you a tested answer the fastest way possible!

Viewing 15 posts - 391 through 405 (of 13,460 total)