Forum Replies Created

Viewing 15 posts - 181 through 195 (of 1,838 total)

  • Reply To: Creating a data and log drive per CPU

    When your "drives" are sourced from a SAN, it doesn't really make sense to split out the drives to that extreme, because all of those little drives are likely carved...

  • Reply To: query a new vendor database

    The database diagrams feature of Management Studio may seem easy and convenient, but it does have its issues and drawbacks.

    If you don't have a tool already that can "reverse engineer"...

  • Reply To: ODBC Error for Access SQL Server connection

    What type of ODBC connection are you using, User DSN, System DSN, or File?  What are the ODBC errors?

     

  • Reply To: Permission related question

    John Mitchell-245523 wrote:

    Good point.  I don't know whether this would work, but you could try creating a stored procedure that calls sp_update_job with the @owner_login_name parameter, and give your login permission...

  • Reply To: SSIS - Data Load Using Excel Source

    Can you try to verify the actual file type before you open it in Excel?  I've seen some people do silly things like name a plain text file with an...

  • Reply To: Sequence For a Dim Table's Durable Key

    I'm not sure I understand the question, did you mean you want to explicitly pass in the value for this column in the INSERT statement?

    If this column is defined as...

  • Reply To: LOg file growth

    If the disk filled up because of file autogrowths, you can see the recent history of these in the default trace.  Try this script:

    DECLARE @path NVARCHAR(260);
    SELECT @path...
  • Reply To: Query is getting Timed out

    There's nothing wrong with a ZIP file, and having the pesession file that's in it is much more valuable than any pictures can provide.  Here's some clues I see with...

  • Reply To: Is a durable key always necessary in a dim?

    Offhand I see two hurdles to using a temporal table as a slowly changing dimension.  First, the related records in the temporal table would all have the same primary key...

  • Reply To: BAckup history not showing into MSDB

    what happens if you run a query like this in msdb?

    SELECT bs.backup_set_id, bs.database_name, CASE bs.type WHEN 'D' THEN 'Database' WHEN 'I' THEN 'Differential' WHEN 'L' THEN 'Log'...
  • Reply To: Lincensing qn

    Is there a reason to have your DW landing area on a different server than the DW itself?  Could it just be a different database on the same server?

  • Reply To: Is there such a thing as database file bloating?

    That is a bit of a loaded question, as it can depend on what types of tables and indexes you have in this database.  At a very high level you...

  • Reply To: Extended events

    Have you tried using lower case?

    event_data.value ('(/event/action[@name=''session_nt_username'']/value)[1]', 'VARCHAR(128)') AS SessionName,
    event_data.value ('(/event/action[@name=''nt_username'']/value)[1]', 'VARCHAR(128)') AS NTName,

    the attribute names may be case sensitive.

  • Reply To: Whose account the job runs under?

    SSIS steps in SQL Agent will run as the same user that the Windows service "SQL Server Agent" is setup to log on as.  If you want to control what...

  • Reply To: It Just Works

    George Hepworth wrote:

    Actually, that's not quite how Access works with linked tables, unless, of course, you don't know what you're doing.  This query, run against an ODBC linked SQL Server table...

Viewing 15 posts - 181 through 195 (of 1,838 total)