Viewing 15 posts - 2,596 through 2,610 (of 14,953 total)
You're welcome.
December 15, 2011 at 11:33 am
You have 400-million tables, or 400-million values that go into a single table? Or something in between?
December 15, 2011 at 11:33 am
A key question here is, are the regions reasonably static? You have Australia in there. How likely is that to go away, or be split in two, or...
December 15, 2011 at 10:58 am
Peter Schott (12/15/2011)
Important part of Win7 security, which I did not mention in my initial post, is that you cannot install an app on the phone except from the MS...
December 15, 2011 at 10:53 am
Right-click the database in Management Studio, go to Reports -> Standard Reports -> Disk Use by Table. That'll give you the disk space used by each table, and the...
December 15, 2011 at 10:50 am
What you're looking for isn't an output parameter.
Output parameters look like this:
create stored procedure dbo.Hello
(@YourName_in varchar(100),
@Hello_out varchar(100) OUTPUT)
as
set @Hello_out = 'Hello ' + @YourName_in;
You assign a value to them in...
December 15, 2011 at 10:49 am
I always skip the ones with low page counts, and usually skip the ones that don't have any range scans. Fragmentation doesn't really impact single-row seek performance, after all.
December 15, 2011 at 9:39 am
What are the page counts on the indexes that don't defrag? (http://www.brentozar.com/archive/2009/02/index-fragmentation-findings-part-2-size-matters/)
Edit: Trumped while looking for the reference!
December 15, 2011 at 9:37 am
valeryk2000 (12/15/2011)
The reason I asked is that in the past I had a problem with try/catch when parent proc did not catch the error in...
December 15, 2011 at 9:01 am
Not really. If you want to have the database store native UTF-8 strings, you need to store the binary represenation in a varbinary or binary datatype column.
December 15, 2011 at 8:59 am
Ninja's_RGR'us (12/15/2011)
Couldn't checkpoint be blocked by the single user mode? Not sure if that requires a second connection, but it sounds possible!
Yes.
December 15, 2011 at 8:01 am
Try this:
CHECKPOINT 60;
Issue that command from the database you are trying to shrink the log file for.
Once that runs, run DBCC ShrinkFile on the log file you are trying to...
December 15, 2011 at 8:00 am
engrshafiq4 (12/15/2011)
yes i read xlsx file as xml and passed it to store procedure...i am getting another issue,which i asked herehttp://www.sqlservercentral.com/Forums/Topic1222331-338-1.aspx
I already replied to that separately.
December 15, 2011 at 7:57 am
L' Eomot Inversé (12/15/2011)
GSquared (12/14/2011)
December 15, 2011 at 7:53 am
It depends on whether any of the sub-procs will ever be used independent of the parent proc, whether any of them have different error handling needs from others of them,...
December 15, 2011 at 7:51 am
Viewing 15 posts - 2,596 through 2,610 (of 14,953 total)