ML
    • Recent
    • Categories
    • Tags
    • Popular
    • Users
    • Groups
    • Register
    • Login
    1. Topics
    2. Tags
    3. sql server
    Log in to post
    • All categories
    • nadnerBN

      Microsoft ports SQL Server to Linux

      Watching Ignoring Scheduled Pinned Locked Moved IT Discussion microsoft linux linux server sql server database rdbms
      19
      2 Votes
      19 Posts
      3k Views
      hobbit666H

      https://channel9.msdn.com/Shows/Data-Exposed/SQL-Server-on-Linux-Sneak-Peak

    • IRJI

      Read and Write Permissions Microsoft SQL Server

      Watching Ignoring Scheduled Pinned Locked Moved Solved IT Discussion sql server permissions active directory security groups
      4
      1 Votes
      4 Posts
      1k Views
      IRJI

      @scottalanmiller said:

      You are too fast for us 🙂

      I had a meeting at 3pm EST with the vendor on the assumption I was going to have the issue fixed by then. Now I can go get some coffee.

    • JaredBuschJ

      SQL Express problem with SSRS when using an expression based connection string

      Watching Ignoring Scheduled Pinned Locked Moved Solved IT Discussion sql server reporting services ssrs microsoft sql
      7
      1 Votes
      7 Posts
      2k Views
      drewlanderD

      To the best of my knowledge, the Express Editions do not have an Agent. You might also encounter another issue if you rely on report subscriptions.

    • IRJI

      SQL Job Failing

      Watching Ignoring Scheduled Pinned Locked Moved IT Discussion sql server
      3
      4 Votes
      3 Posts
      823 Views
      scottalanmillerS

      Thanks for looping back. SQL jobs are not in my wheelhouse any longer.

    • mlnewsM

      SQL Server Maintenance Task Failing

      Watching Ignoring Scheduled Pinned Locked Moved IT Discussion sql server
      7
      1 Votes
      7 Posts
      2k Views
      JaredBuschJ

      My co-worker wrote a quick stored procedure to make searching the command logs easier also.

      You can execute this proc with no parameter to see everything, or you can pass a search string. Remember it is a string and use the % wildcard appropriately.

      exec AA_CmdsExecPast24Hrs '%tablename%'
      exec AA_CmdsExecPast24Hrs '%Jared%'
      etc.

      /****** Object: StoredProcedure [dbo].[AA_CmdsExecPast24Hrs] Script Date: 10/08/2015 11:02:42 ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON GO -- ============================================= -- Author: Bill Russell - Bundy & Associates -- Create date: 6/29/2015 -- Description: Returns a list of queries run over the past 24 hours. -- ============================================= CREATE PROCEDURE [dbo].[AA_CmdsExecPast24Hrs] @ContainsLIKE varchar(300) AS BEGIN SET NOCOUNT ON; SELECT execquery.last_execution_time AS ExecTime, ExecSQL.text AS [Script] FROM sys.dm_exec_query_stats AS ExecQuery CROSS APPLY sys.dm_exec_sql_text(execquery.sql_handle) AS ExecSQL WHERE @ContainsLIKE='' OR (@ContainsLIKE <> '' AND ExecSQL.text LIKE @ContainsLIKE) ORDER BY ExecQuery.last_execution_time DESC END
    • garak0410G

      Cannot Remote Connect to SQL Server

      Watching Ignoring Scheduled Pinned Locked Moved IT Discussion sql server database networking
      12
      2 Votes
      12 Posts
      3k Views
      Reid CooperR

      Great!

    • IT-ADMINI

      i put myself in a big problem

      Watching Ignoring Scheduled Pinned Locked Moved IT Discussion windows windoes server sql server domain controller active directory
      107
      2 Votes
      107 Posts
      52k Views
      scottalanmillerS

      @PSX_Defector said:

      @scottalanmiller said:

      They don't treat the "business" that you work for as seriously as American or European (or Nicaraguan in my case)

      That's the first time anyone ever referred to Latin America as "serious" in business. The work ethic of Latin America, besides the lowest level of worker, is horrible. It was like pulling teeth to get things done in Costa Rica when I was running Vegas Club Room. And then we start mentioning South, especially Brazil, holy f[moderated]!

      Costa Rica has a reputation for work issues even in Central America, I would not use that as the standard. I've not seem similar issues in Panama, for example. Nicaragua I am still getting to know.

    • bbigfordB

      Data Protection Manager and SQL Server Failure

      Watching Ignoring Scheduled Pinned Locked Moved IT Discussion sql server data protection manager microsoft backup database
      6
      2 Votes
      6 Posts
      2k Views
      bbigfordB

      Got it solved. I started pointing them at a new server (basically starting from scratch). Still got some inconsistencies but that was resolved by toggling the agent to the new server (after I already pointed it at it). Then I fixed the last couple with a disk allocation mod. What a mind-blowing, super frustrating piece of software.

    • IRJI

      DB Help on SQL Server

      Watching Ignoring Scheduled Pinned Locked Moved IT Discussion sql server database
      5
      3 Votes
      5 Posts
      1k Views
      IRJI

      If anyone is interested, Robert for Microsoft on Spiceworks was a huge help on this issue. He has really helped me narrow it down and given me a possible resolution.

      http://community.spiceworks.com/topic/1175896-allocation-error-in-sql-database

    • IRJI

      SQL Monitoring and Management Tool

      Watching Ignoring Scheduled Pinned Locked Moved IT Discussion sql server microsoft sql sql management 3rd party tools windows server
      5
      1 Votes
      5 Posts
      2k Views
      JaredBuschJ

      I love Red Gate. Their stuff is certainly not free, but ever piece of their software I have purchased has been well worth the cost.

    • mlnewsM

      MS SQL Server Certification Exam Prep Material Available Online for Free

      Watching Ignoring Scheduled Pinned Locked Moved IT Careers mcsa sql server training
      1
      5 Votes
      1 Posts
      979 Views
      No one has replied
    • C

      SQL Server - best practices for SMB

      Watching Ignoring Scheduled Pinned Locked Moved IT Discussion database storage sql server raid
      37
      3 Votes
      37 Posts
      11k Views
      nadnerBN

      @thecreativeone91 said:

      I knew a DBA who we had to teach how to save a word document while she worked with us on some stuff.. and she was also the Database & Programming (C++, VB.NET, Java) professor at a local college

      Sounds like someone who failed upwards into that position of DBA

    • M

      Latest Blog Post: Shrink MS SQL Log Files with PowerShell

      Watching Ignoring Scheduled Pinned Locked Moved Self Promotion powershell sql server
      4
      2 Votes
      4 Posts
      2k Views
      JaredBuschJ

      Nice post. I will almost certainly make use of this in the future!

    • garak0410G

      SQL Question - Removing Part Of A Field

      Watching Ignoring Scheduled Pinned Locked Moved IT Discussion lightswitch sql server sql t-sql
      18
      0 Votes
      18 Posts
      4k Views
      JaredBuschJ

      @NetworkNerd said:

      If I understand correctly, that code snippet is only for a validation that will be run against the Phone1 field. Are you just trying to throw up a validation error on a web page or within an application if a proper phone number is not entered in the PHONE1 field?

      He wants to extract out the first 10 digits of the PHONE1 field and present them to the application / page as the phone number so that the native regional formatting of 10 digit TN handles it correctly.

    • T

      MOA 2007 restore woes

      Watching Ignoring Scheduled Pinned Locked Moved IT Discussion microsoft offic microsoft sba sql server
      6
      0 Votes
      6 Posts
      2k Views
      T

      Anyone know how to extract data from an .sbb file? I am hoping for csv format.

    • scottalanmillerS

      Free MS SQL Server Training

      Watching Ignoring Scheduled Pinned Locked Moved IT Careers training sql server
      6
      2 Votes
      6 Posts
      2k Views
      scottalanmillerS

      Like MS SQL Server, PostgreSQL is a full RDBMS. It's a hard core enterprise system that goes after drop in replacement with Oracle DB. Pretty much any enterprise software using a database lets you select between PostgreSQL, Oracle, Sybase and SQL Server if not many more like MySQL, MariaDB, DB2, etc.

      MySQL is focused on lightweight web applications so is tuned differently than the others. PostgreSQL is the new darling for enterprise app development. It's old but really good.

    • Reymar.EsguerraR

      MS SQL Server 2008 Database Connection

      Watching Ignoring Scheduled Pinned Locked Moved IT Discussion sql server database rdbms ssms sql server 2008
      19
      2 Votes
      19 Posts
      4k Views
      P

      @PSX_Defector said:

      @pol.darreljade said:

      @scottalanmiller but other can connect to database.
      It's the decision of our Boss to convert to wireless so we can't argue about that haha!

      Two words. Air snort.

      That's a bad idea, a really bad idea.

      Air snort? What's that? Sorry, I'm not familiar really familiar about Air Snort.

    • P

      Unable to remote my MS SQL Server

      Watching Ignoring Scheduled Pinned Locked Moved IT Discussion sql server sql server 2008 database
      4
      1 Votes
      4 Posts
      1k Views
      scottalanmillerS

      Are you trying to connect your application to its database?

    • 1
    • 2
    • 3
    • 3 / 3