Forum Replies Created

Viewing 15 posts - 2,176 through 2,190 (of 6,041 total)

  • RE: How to force column explicitly to string type before we export to excel

    Excel is a marvelous tool for presentation and analysis, but .XLS and .XLSX are terrible formats for data interchange.

    There have been cases where the business would submit excel documents...

    "Do not seek to follow in the footsteps of the wise. Instead, seek what they sought." - Matsuo Basho

  • RE: Do you have DBA syndrome?

    It's important that the DBA be an integral team member. Include their database development and deployment tasks as part of sprint planning and invite them to daily stand-up meetings. Invite...

    "Do not seek to follow in the footsteps of the wise. Instead, seek what they sought." - Matsuo Basho

  • RE: Log Data Being Read/Queried

    alex.sqldba (10/5/2016)


    Yeah sadly no stored procs, otherwise it would have been much easier.

    Let this archived thread be an enduring lesson to anyone currently in the process of building a database...

    "Do not seek to follow in the footsteps of the wise. Instead, seek what they sought." - Matsuo Basho

  • RE: Recommendation for better perfromance

    If you are the DBA (or simply the person sitting closest to the database server), then probably the best thing you can do to improve performance is educate yourself about...

    "Do not seek to follow in the footsteps of the wise. Instead, seek what they sought." - Matsuo Basho

  • RE: How to use sp_msforeachdb to create multiple table in multiple databases

    sp_MsForEachDB may not be officially documented by Microsoft, but back in 2007 an anonymous member of Microsoft's SQL Server team did obliquely acknowledge it's existence.

    https://connect.microsoft.com/SQLServer/feedback/details/264677/sp-msforeachdb-provide-supported-documented-version

    "Do not seek to follow in the footsteps of the wise. Instead, seek what they sought." - Matsuo Basho

  • RE: How to use sp_msforeachdb to create multiple table in multiple databases

    Phil Parkin (10/4/2016)


    New Born DBA (10/4/2016)


    Experts,

    Is is possible to create multiple tables with same tablename and column in multiple databases without selecting each database from the drop down menu and...

    "Do not seek to follow in the footsteps of the wise. Instead, seek what they sought." - Matsuo Basho

  • RE: How to force column explicitly to string type before we export to excel

    You can use a Derived Column transformation task between source and destination, or you can modify SQL to cast the column as specific data type.

    For example: CAST( col1...

    "Do not seek to follow in the footsteps of the wise. Instead, seek what they sought." - Matsuo Basho

  • RE: Log Data Being Read/Queried

    OK, I thought he said stored procedure earlier, so scratch that.

    "Do not seek to follow in the footsteps of the wise. Instead, seek what they sought." - Matsuo Basho

  • RE: Summary table for roll-up

    So, you have this flat denormalized table containing nearly 100 million rows and 100+ columns. The problem is you need to report from it; performing rollups at various levels, aggregation...

    "Do not seek to follow in the footsteps of the wise. Instead, seek what they sought." - Matsuo Basho

  • RE: Log Data Being Read/Queried

    If for whatever reason the extended event trace doesn't give you what you need about input parameter values, then can also implement procedure call auditing using a table and adding...

    "Do not seek to follow in the footsteps of the wise. Instead, seek what they sought." - Matsuo Basho

  • RE: Log Data Being Read/Queried

    If I understand you correctly, you have a table containing a significant amount of history, much of which you believe can be archived elsewhere. You now want to know the...

    "Do not seek to follow in the footsteps of the wise. Instead, seek what they sought." - Matsuo Basho

  • RE: Coming Attacks

    Gary Varga (10/4/2016)


    So now everyone and their grandma is going to ask us to secure their IoT lightbulb because it is going to be "their" responsibility. Legally, would it then...

    "Do not seek to follow in the footsteps of the wise. Instead, seek what they sought." - Matsuo Basho

  • RE: Questioning the Interviewer

    When in the role of a candidate, I'll typically ask why the previous person in the position decided to leave, or why he/she was let go. It's a good one...

    "Do not seek to follow in the footsteps of the wise. Instead, seek what they sought." - Matsuo Basho

  • RE: Execute stored procedure A and systems is running stored procedure B????

    Perhaps the procedure you are executing is calling the other procedure. Look at the T-SQL contents to confirm. That would be my first guess.

    "Do not seek to follow in the footsteps of the wise. Instead, seek what they sought." - Matsuo Basho

  • RE: Loop over info from a table

    Are you asking how to SQL query a text file?

    If so, then you canuse OPENROWSET function.

    https://msdn.microsoft.com/en-us/library/ms190312.aspx

    "Do not seek to follow in the footsteps of the wise. Instead, seek what they sought." - Matsuo Basho

Viewing 15 posts - 2,176 through 2,190 (of 6,041 total)