Viewing 15 posts - 76 through 90 (of 233 total)
-- in appliction this postdate is displayed as Apr 16, 2009 4:29 am
Can you please share the calculation/query that is used by the Application to get the data from...
November 16, 2009 at 7:47 am
Read BOL and search on google....
Read these article for Index.
November 16, 2009 at 6:11 am
Can you post the table structure and sample date? Help us to help you.
November 16, 2009 at 5:54 am
Here are some things you can check:
1. Check the Folder property of loop, whether it is pointing to correct folder.
2. check the Files property and see whether it using the...
November 16, 2009 at 1:59 am
sysadmin bypasses all security checks so there's no way to DENY to someone with sysadmin permissions
That is what I had thought. Thanks Gail for the conformation.
November 13, 2009 at 3:30 am
I don't think there is a way to prevent a sysAdmin to fire select statements. If there is one then I would also like to know.
The only way I would...
November 13, 2009 at 3:26 am
Encrypt the sensitive data and then store it. And decrypt while reading in application.
November 13, 2009 at 2:56 am
I have never faced any problem by calling procedures like this. You can use the same name.
November 12, 2009 at 7:53 am
Create procedure Estimate(
@Rows int
,@TableName varchar(32)
)
AS
select sum(length)* @Rows AS SizeInBytes
from sys.syscolumns
where id = object_id(@TableName)
But this code will give you the maximum size your row will occupy because it sums the size...
November 12, 2009 at 4:15 am
execute xp_cmdshell 'net stop sqlserveragent'
execute xp_cmdshell 'net start sqlserveragent'
November 12, 2009 at 4:04 am
Thanks Crosan for the article. It looks great.
We ran some tests last night and observed that the INSERTS take 3 time more the time compared to uncompressed table.
November 11, 2009 at 12:29 am
within your script task, use the System.IO.File.GetLastWriteTime to test
Yes! This looks better that reading the header. Thanks Mark!
November 11, 2009 at 12:12 am
use RESTORE HEADER command to automate.
November 10, 2009 at 8:24 am
You sure that you are using 2008.
Because in SSMS 2008 it gives an error if you type a table name that doesn't exists.
November 10, 2009 at 8:15 am
You can try WITH ROLLUP option with GROUP BY. But it will give you one extra row for each employee having the total hours.
November 10, 2009 at 8:10 am
Viewing 15 posts - 76 through 90 (of 233 total)