Viewing 15 posts - 1 through 15 (of 15 total)
Ha ha ha...
You got me... But here the time has past noon now 🙂
April 1, 2013 at 6:04 am
Dynamic query is a banned concept in my company.
1. Monitoring performance is hard
2. Security concerns
3. Debugging is difficult.
August 3, 2011 at 12:29 am
Coloumn per language is too costly. Each time a language is adopted, we need to change the schema of all tables
I am thinking on moving the sorting to application
Other...
August 3, 2011 at 12:27 am
Hi all,
Thank you for your response.
I can identify the data with the collation. But my coding is going to be complex.
PLease check the code
Use tempdb;
Create Table CollateTest
(
LineiD...
July 29, 2011 at 11:23 pm
But then, how will you add sorting to the select query?
July 29, 2011 at 1:34 pm
This script does not consider the row overhead involved over variable columns, nullable columns and bit columns. I believe ( not tested though) about calculated columns were also not...
June 23, 2011 at 9:36 am
Hi,
Thank you for the note, sorry for the late response.
Actually the code was first written in 2002 and I modified in 2004. I can't remember touching this code...
March 18, 2009 at 3:34 am
If you want the same rights over all databases, you can also use sp_msForEachDB stored procedure. But if your need is different from database to database, you need to...
February 26, 2008 at 3:02 am
I recently gave a presentation on table aprtitioning at Sri Lankan user group meeting. Please check the site:
http://sqlserveruniverse.com/content/MeetingList.aspx
Let me clarify one point:
You can have the...
February 25, 2008 at 8:29 am
Primary key should be Unique, but need not to be Clustered.
Clustered index need not to be Unique
February 25, 2008 at 7:26 am
Preethiviraj Kulasingham (2/25/2008)
1. Create the primary Key as NON CLUSTERED
2. Think about partitioning the table...
February 25, 2008 at 7:18 am
Hi Sara,
A Couple of points:
1. As the actual data pages should be based on clustered index, you can't have the clustered index on one column and partition on...
February 25, 2008 at 7:15 am
Are you missing the Join condition?
In your query, all columns in the SELECT clause belong to BillingRecord table.
You are using the package type table but it is not JOINed with...
February 25, 2008 at 4:33 am
You can minimize the administrative work by using Roles.
Create a Role and Give all the permissions to that role. Add the users to that role.
Either you can give Execute,...
February 25, 2008 at 4:25 am
Hi,
Read Commited is the default isolation of the database.
can you Identify all the rows and update tem in small chuncks so that the locks will not be at the...
February 14, 2008 at 10:32 pm
Viewing 15 posts - 1 through 15 (of 15 total)