Viewing 15 posts - 196 through 210 (of 1,252 total)
I gather that the data is read only and the end users cannot modify it. Is that correct?
August 28, 2009 at 2:12 am
You cant call it in a select statement not can you pass column names . You will have to define column name as a params or hard code the column...
August 28, 2009 at 2:07 am
sysobjects is a system table and sys.sysobjects and sys.objects are views. Question mentions sysobjects.
August 28, 2009 at 1:57 am
Here's a different approach that i try for complex functions. I create a stored procedure with same code as that of the function. Most of the time this is easily...
August 27, 2009 at 12:13 am
vaseem (8/26/2009)
If I take full backup of Master database along with other user database then I restore user database backups along with master database then should I have all logins/users...
August 26, 2009 at 11:59 pm
Are you facing any performance problems.
August 26, 2009 at 2:14 am
I haven't used SQLCMD but i got this from BOL.
"h headers
Specifies the number of rows to print between the column headings. The default is to print headings one time...
August 21, 2009 at 4:22 am
Real data type is a approximate data types, it stores approximate values rather than the exact value. Generally this shouldn't be noticeable for small values. If you want to...
August 21, 2009 at 4:14 am
To add to what Grant has said..
When you rebuild your indexes temp db is used extensively.
If your temp db size is not set to 9gb initial size then you...
August 20, 2009 at 7:16 am
Are you going to put all the 200 databases in a signle sql server instance?
August 19, 2009 at 6:20 am
My 2 cents...
First have proper backups or have the old server in running condition so that you can fall back on it in case something goes wrong while moving your...
August 19, 2009 at 3:49 am
That's a good point about having staging tables in a database with simple recovery model. Thanks
A 20 page report is useless to the customer but what if the user wants...
August 19, 2009 at 12:44 am
Is the "qryCycleTimesBR_6" the final result set that you want and the other queries are written just to get the final (qryCycleTimesBR_6) result.
August 18, 2009 at 5:57 am
Viji
Typically a data dictionary contains info regarding tables, fkeys, indexes and also information regarding hard coded values in columns if any. Other than this it contains info regarding stored...
August 18, 2009 at 3:25 am
Viewing 15 posts - 196 through 210 (of 1,252 total)