all news and tips for database administrators and BI Architects
יום ראשון, 16 בנובמבר 2008
Multiple Inserts
והפעם – Multiple Inserts.
בעזרת ה- Multiple Inserts ניתן לייעל את פקודת ה- Insert לטבלה.
לדוגמא במקום לכתוב כך (כמו שכתבנו בגרסאות קודמות) :
INSERT INTO MultipleInsertsCities VALUES (1, N'Eskisehir')
INSERT INTO MultipleInsertsCities VALUES (2, N'Istanbul')
ניתן לכתוב מעכשיו כך:
INSERT INTO MultipleInsertsCities
VALUES (1, N'Eskisehir'), (2, N'Istanbul')
או:
INSERT INTO MultipleInsertsCities (CityId, CityName)
VALUES (3, N'New York'), (4, N'Tokyo')
דוגמא נוספת:
לפני:
INSERT INTO MultipleInsertsCities (CityName) VALUES (N'Bangkok')
INSERT INTO MultipleInsertsCities (CityName) VALUES (N'Lima')
אחרי:
INSERT INTO MultipleInsertsCities (CityName) VALUES (N'Bangkok'), (N'Lima')
שימו לב שמהיום ניתן לשפר את העבודה ולבצע Insert לשני רשומות במקביל, מבלי לכתוב את משפט ה- insert פעמיים.
בהצלחה !!
יום ראשון, 9 בנובמבר 2008
Report Builder 2.0
שלום רב,
לידיעתכם מייקרוסופט שיחררה להורדה את Microsoft SQL Server 2008 Reporting Services Report Builder 2.0:
http://www.microsoft.com/downloads/details.aspx?FamilyID=9f783224-9871-4eea-b1d5-f3140a253db6&displaylang=en
Brief Description:
Report Builder 2.0
Microsoft SQL Server 2008 Report Builder 2.0 provides an intuitive report authoring environment for business and power users.
It supports the full capabilities of SQL Server 2008 Reporting Services. The download provides a stand-alone installer for Report Builder 2.0.
Overview:
Microsoft SQL Server 2008 Reporting Services Report Builder 2.0 delivers an intuitive, Office-like report authoring environment enabling business and power users to leverage their experience with Microsoft Office 2007 products. Microsoft SQL Server 2008 Reporting Services Report Builder 2.0 supports the full capabilities of SQL Server 2008 Reporting Services including:
· Flexible report layout caabilities of SQL Server 2008 Report Definition Language
· Data Visualizations including charts and gauges
· Richly formatted textboxes
· Export to Microsoft Office Word format
Features specific to Report Builder 2.0 are focused on simplifying the process of creating and editing reports and queries and include the following:
· Easy to use wizards for creating table, matrix and chart data regions
· Support for directly opening and editing reports stored on the report server
· Support for using server resources such as shared data sources
· Query designers for multiple data sources including a Microsoft SQL Server-specific query designer
יום שלישי, 28 באוקטובר 2008
SQL Server 2005 Service Pack 3 - Beta
לידיעתכם חברת מייקרוסופט שיחררה גרסת BETA ל- SQL Server 2005 Service Pack 3 .
גרסת ה- beta של SP3 מכילה את כל השינויים והעדכונים מאז SP2 אשר חלקם מוגדרים כ- Critical Issues.
יש לציין כי גרסה זו אינה מכילה יכולות חדשות.
גרסת BETA זו מתאימה לגרסאות הבאות:
· SQL Server 2005 Enterprise Edition
· Server 2005 Enterprise Evaluation Edition
· SQL Server 2005 Developer Edition
· SQL Server 2005 Standard Edition
· SQL Server 2005 Workgroup Edition
What's New in SQL Server 2005 SP3 ?
http://download.microsoft.com/download/0/e/5/0e5697be-028a-4da6-89a7-c18a9a1ac3c7/WhatsNewSQLServer2005SP3.htm
קישור להורדת הקובץ:
http://www.microsoft.com/downloads/details.aspx?FamilyId=D22317E1-BC64-4936-A14B-7A632B50A4CA&displaylang=en
לידיעתכם,
יום שלישי, 7 באוקטובר 2008
Cumulative update package 1 for SQL Server 2008
לידיעתכם מייקרוסופט שיחררה Cumulative update package ל- SQL server 2008 .
להלן קישור לרשימת הבאגים שתוקנו בעדכון זה וקובץ ההורדה :
http://support.microsoft.com/default.aspx/kb/956717
בהצלחה.
יום חמישי, 2 באוקטובר 2008
Books Online - SQL Server 2008
לידיעתכם מייקרוסופט שיחררה עדכון גרסה ל- Books Online של SQL Server 2008 :
http://www.microsoft.com/downloads/details.aspx?FamilyId=765433F7-0983-4D7A-B628-0A98145BCB97&displaylang=en
SQL Server 2008, the latest release of Microsoft SQL Server, provides a comprehensive data platform.
Books Online is the primary documentation for SQL Server 2008. Books Online includes the following types of information:
Setup and upgrade instructions.
Information about new features and backward compatibility.
Conceptual descriptions of the technologies and features in SQL Server 2008.
Procedural topics describing how to use the various features in SQL Server 2008.
Tutorials that guide you through common tasks.
Reference documentation for the graphical tools, command prompt utilities, programming languages, and application programming interfaces (APIs) that are supported by SQL Server 2008.
Descriptions of the sample databases and applications that are available with SQL Server 2008. You can download the sample databases from the SQL Server Community Projects and Samples page on CodePlex.