DCSIMG
Browse by Tags - MS Israel Community
  • I back and … SQL report to export all sub collection tree

    Hello, after some time that I haven't posted anything in this blog I decided that its time to get myself together and write something. before I start to get dirty and technical I would to update you all about what I was up to in the last 6 mounts. so, for those of you how don’t know me, my name is gal hutman. I currently work at NESS.IT as a senior system center consultant. I started working here about 3 mounts ago , before that I worked at Bynet data communication, also as system center consultant...
  • זו ההזדמנות לעשות סדר בבלאגן – DQS, מודול טיוב הנתונים של SQL Server 2012

    מאת: רועי פסטרנק מנהלי מחשוב ומערכות מידע משקיעים משאבים רבים בפיתוח תשתיות מחשוב מתקדמות אשר יתרמו לייעול תהליכים בארגון ולשיפור ביצועים. אבל הנה פרדוקס קטן: גם התשתיות הכי מתקדמות תמיד יהיו תלויות באיכות הנתונים שאותן הן אמורות לנהל וגם השקעות גדולות באיסוף כמות גדולה של נתונים ובניהול שלהן הופכות חסרי ערך ללא דאגה מתמדת לאיכות הנתונים. המשוואה פשוטה: נתונים לא טובים = מידע לא טוב = עסקים לא טובים. בנוסף, היום יותר ויותר אנו רואים התייחסות רגולטורית לסוגיית טיוב הנתונים. במקרים רבים ישנה רגולציה...
  • Microsoft® SQL Server® ODBC Driver for Linux

    “The Microsoft SQL Server ODBC Driver for Linux provides native connectivity from Linux to Microsoft SQL Server. “ The ODBC driver can be downloaded from the following link .
  • מה חדש ב- SSMS בגרסת SQL Server 2012

    מאת: איתי בנימין הוא MVP, ראש תחום SQL Server בחברת וראסיטי כשאני שואל DBA-ים של SQL Server בפורומים ובקבוצות הדיון אילו פיצ'רים הם הכי אוהבים בגרסת 2008 SQL Server, רובים עונים לי שהם התלהבו מיכולות ה- Debug וה- IntelliSense שב- SSMS. כלומר: משום מה מכל היכולות החדשות בגרסת SQL Server 2012 - בסוף מה שה- DBA זוכרים וממש אוהבים אלו היכולות "הקטנות" בכלי הפיתוח והניהול שכנראה לפעמים מאוד "גדולים" וחוסכים לנו זמן יקר בעבודה השוטפת ... לכן בחרתי במאמר הזה לסקור חלק מהיכולות החדשות...
  • Tips and Tricks #2– Installing SharePoint 2010 On SQL 2012 Denali

    התקנתי אצל אחד מהלקוחות SharePoint 2010 ביחד עם SQL 2012 CTP 3 code name Denali. כמובן שהתקנת ה SharePoint לא משתנה והכל עובד בצורה רגילה.   ישנו  stored procedure שההתקנה של SharePoint משתמשת בו אשר לא קיים כבר בגרסה הזו של ה-SQL,  אם תנסו להריץ את ה-configuration wizard או תנסו ליצור configuration database בצורה אחרת כנראה תקבלו את השגיאה הבאה: Could not find stored procedure ‘sp_dboption. מה שצריך לעשות זה פשוט להתקין את SP1 של SharePoint 2010 לפני הרצת ה-wizard או יצירת הדאטאבייס...
  • MDX vs. SQL

    A while ago I posted about SQL and MDX in separated posts. This time I will walk you through MDX and SQL queries to illustrate the similarities and differences between the two query languages. All the queries are against AdventureWorksDW. I invite you to add comments to make this idea list, even bigger!   SQL MDX To retrieve a single value from a table, you need to use the Sum() function to add up the values of the selected measure for all rows and optionally assign it an alias as shown in this...
  • Microsoft® SQL Server® 2008 R2 Feature Pack

    Microsoft® SQL Server® 2008 R2 Feature Pack is a collection of advanced tools for SQL 2008 R2 environment. The Feature Pack can be downloaded from the following link .
  • SharePoint API – Download \ Upload Documents (Tool)

    Tweet A long time ago I wrote about SharePoint 2007 Files Restore Tool , tool that allows you to connect to SharePoint content database (not need to have SharePoint installation) and extract documents. The reason I wrote this tool was a customer that upgrade TFS and perform a new installation of SharePoint so he lost all his documents, this tool helped me to extract all documents and added them to the new SharePoint site. SharePoint upgrade/migration can be unpleasant and sometimes I prefer to do...
  • SQL Server 2008 Service Pack 3

    Microsoft released SQL Server 2008 Service Pack 3. The new update is available  for downloaded from the following link: SQL Server 2008 Service Pack 3
  • Useful SQL System Stored Procedure

    1. Finding SQL Server Version: Select @@version; or EXEC master..sp_MSgetversion 2. Finding SQL Databases names and size: Use master; EXEC sp_helpdb; 3. Finding the physical location of the SQL databases and logs: SELECT name, physical_name AS current_file_location FROM sys.master_files 4. Finding list of tables and views in SQL database: Use master; EXEC sp_tables; 5. Finding which user/s is/are currently logging to the SQL server: EXEC sp_who; 6. Move to Advanced Configurations Mode: USE master;...

Page 1 of 4 (32 items) 1 2 3 4 Next >