Sunday, March 31, 2013
Sql Server 2008,2012: Run Sql Script File From Command Line
http://msdn.microsoft.com/en-us/library/ms166559(v=sql.105).aspx
Run the following command in the command prompt.
Replace "C:\myScript.sql" with the location of your sql code file location.
[code language="sql"] sqlcmd -S myServer\instanceName -i C:\myScript.sql[/code]
The above command will return the result set in command prompt.
If you prefer the result in a text file use the code below:
[code language="sql"] sqlcmd -S myServer\instanceName -i C:\myScript.sql -o C:\EmpAdds.txt[/code]
Happy Coding :)
Thursday, March 28, 2013
Encryption\Decription in Sql Server 2005
- ENCRYPTION by passphrase
- ENCRYPTION by symmetric keys
- ENCRYPTION by Asymmetric keys
- ENCRYPTION by certificates
http://www.databasejournal.com/features/mssql/article.php/3714031/SQL-Server-2005-Encryption-types.htm
http://dotnetslackers.com/articles/sql/IntroductionToSQLServerEncryptionAndSymmetricKeyEncryptionTutorial.aspx
Wednesday, March 27, 2013
Tuesday, March 26, 2013
Sunday, March 24, 2013
Saturday, March 23, 2013
SSIS: Remove duplicate rows from input file
We have an requirement in which there are 40,000,000 (forty million) records in the Input file. We have to load it into the databases after implementing a few business logic transformations. Major part of concern is to remove duplicate rows. Following are the possible solutions.
1. Use Sort task and set "remove duplicate" property to TRUE. Would take quite long as it is a full blocking transaction.
2. Use Script component. Need to compare. I guess it would again be a full blocking transformation.
3.Dump data to DB and then reload after selecting distinct records. Looks like the best option.
Will be back with the stats. Feel free to add your suggestions/stats/comments.
Happy SSISing.. :)
Friday, March 22, 2013
Thursday, March 21, 2013
Wednesday, March 20, 2013
Sql Server : Why Use Collation ?
Why Use collation? Brilliant Explanation here:
http://www.dotnetfunda.com/forums/thread3599-what-is-the-use-of-collate-in-sql-server.aspx
for further drill down.. refer:
http://www.sqlserverclub.com/articles/understanding-sql-server-collation-sequences.aspx
Executing SSIS Package via command prompt using multiple config files
[code]/FILE "F:PackageFolder\Package.dtsx" /CONFIGFILE "F:\ConfigFileLocation\FirstPackageConfigFile.dtsConfig" /CHECKPOINTING OFF /REPORTING EW [/code]
In case we have multiple config files this is how the command goes:
[code]/FILE "F:PackageFolder\Package.dtsx" /CONFIGFILE "F:\ConfigFileLocation\PackageConfigFile.dtsConfig" /CONFIGFILE "F:\ConfigFileLocation\SecondPackageConfigFile.dtsConfig" /CHECKPOINTING OFF /REPORTING EW [/code]
Hope it helps! :)
Tuesday, March 19, 2013
Monday, March 18, 2013
Quick Tips
1. GUID Using SQL Server
You can generate a GUID using SQL Server using the following T-SQL statement:
[code] SELECT newid()[/code]
This statement generates a new GUID and displays it in the output window.
2. Get current time after removing special characters
[code]
SELECT REPLACE(CONVERT(VARCHAR, GETDATE(), 14),':','')
[/code]
Above code will return '221320687' for date '2013-03-19 22:13:20.687'
3. Converting strings to dates in derived column component: SSIS
Convert from yyyymmdd to date data type
4. Cmd Prompt : Shortcuts: ssms, sqlwb - did they confused you yet?
Check following link to clerify:
http://www.silverlighthack.com/post/2008/08/02/sql-server-2008-quick-fact-new-ssms-shortcut.aspx
[code]
(DT_DBTIMESTAMP)(SUBSTRING([date string], 1, 4) + "-" SUBSTRING([date string], 5, 2) + "-" + SUBSTRING([date string], 7, 2))
[/code]
4. difference between look up and merge join -- SSIS
http://consultingblogs.emc.com/jamiethomson/archive/2005/10/21/SSIS_3A00_-A-case-study-of-using-LOOKUPs-instead-of-MERGE-JOINs.aspx
http://beyondrelational.com/modules/2/blogs/106/Posts/14438/ssis-playing-around-with-lookup-and-merge-join.aspx
Quick Tips: generate GUID in Sql Server
GUID Using SQL Server
SELECT newid()
This statement generates a new GUID and displays it in the output window.Sunday, March 17, 2013
Top with ties and without ties
Top clause with ties
[code language="sql"]--with ties
Select top(4) with ties * from test.dbo.emp order by salary[/code]
- Query will generate rows including additional rows that have the same value based on the SORT column \columns as the last returned rows
- Can only be used in SELECT Statement and if and only if there is an ORDER BY clause specified.
Monday, March 4, 2013
Temp table vs Table variable: Sql Server
http://www.codeproject.com/Articles/415184/Table-Variable-V-S-Temporary-Table
major difference:
Table variables are Transaction neutral. They are variables and thus aren't bound to a transaction.
Temp tables behave same as normal tables and are bound by transactions.
Important:
Both table variables and temp tables are stored in tempdb. This means you should be aware of issues such as COLLATION problems if your database collation is different to your server collation; temp tables and table variables will by default inherit the collation of the server, causing problems if you want to compare data in them with data in your database.
Any procedure with a temporary table cannot be pre-compiled, while an execution plan of procedures with table variables can be statically compiled in advance. Pre-compiling a script gives a major advantage to its speed of execution. This advantage can be dramatic for long procedures, where recompilation can be too pricy.
Table variables exist only in the same scope as variables. Contrary to the temporary tables, they are not visible in inner stored procedures and in exec(string) statements. Also, they cannot be used in an insert/exec statement.
http://sqlserverplanet.com/tsql/yet-another-temp-tables-vs-table-variables-article
Date functions: Sql Server- DATEPART() , DATEADD() , DATEDIFF() , DATENAME() , DAY() , MONTH() ,YEAR()
1. DATEPART()
2. DATEADD()
3. DATEDIFF()
4. DATENAME()
5. DAY()
6. MONTH()
7. YEAR()
http://shawpnendu.blogspot.in/2009/05/datepart-dateadd-datediff-sql-server.html
http://www.mssqltips.com/sqlservertip/2507/determine-sql-server-date-and-time-with-datepart-and-datename-functions/
@@Identity, Scope_Identity() , Ident_Current('table_name') : Get last inserted record in a table - Sql Server
Gets the identity value entered into to the table in your current session.Scope of @@identity is not limited. If there is a trigger which would create an entry in another table, you will get the identity created in the last.
in other words:
It returns the last identity value generated for any table in the current session, across all scopes.
Select Scope_Identity()
It returns the last identity value generated for any table in the current session and the current scope.
Hence, if we consider the example given above the scope_identity would give the identity value generated by explicit insertion rather than the trigger.
Select Ident_Current('table_name')
It returns the last identity value generated for a specific table in any session and any scope.
Scope_Identity equivalent for GUID:
http://stackoverflow.com/questions/1509947/sql-server-scope-identity-for-guids