Viewing 15 posts - 976 through 990 (of 1,253 total)
select top 1 * from table1 inner join table2 on table1.po# = table2.po#
January 7, 2008 at 9:24 pm
Hi
do you mean that after changing to unrestricted file growth
it still shows restricted file growth to "2,097,152" MB ?
maximum log file size is 2 TB i.e "2,097,152" MB.
January 7, 2008 at 1:51 am
You need not reindex all the tables in the database. In your database there may be tables holding very small amount of data and these tables will have very little...
January 7, 2008 at 1:43 am
You could call the stock sp from inside the report sp.
You still will need a temp table to hold data returned by the stock sp.
January 7, 2008 at 1:38 am
I agree with steve . You can also backup to a tape. Its better to backup to a local drive and copy to a remote location.
January 6, 2008 at 10:16 pm
thats the reason
take a full backup and log backup
truncate the log file
check out BOL for more details on this
January 4, 2008 at 4:36 am
2 things that come to my mind now...
you can either use a temp table, insert rows into it and then update the sum.
otherwise you can use a union query
select Category,...
January 4, 2008 at 4:32 am
How old is your db and from when are you taking log backups.
Are you sure that no huge transactions are going on.
Have any triggers or jobs that modify data...
January 3, 2008 at 11:36 pm
Hi
Just my thoughts here and apologies in advance if iam wrong.
Cant we divide the number of rows in a table with the page count to get the page splits
Qouting from...
January 2, 2008 at 11:09 pm
Iam sure many have already told u this but once again just to reinfore the point. Remove the cursor and use SET based logic.
I have done this earlier and...
January 2, 2008 at 9:32 pm
UQ means Unique constraint. these make sure that there are no duplicate values in the specified columns.
Check out BOL for more info.
January 2, 2008 at 5:29 am
not really... your problem is that you are not able to login to SQL instance. Probelm lies else where. check once again .
January 2, 2008 at 5:26 am
Hi
Since you are using a domain account to login to SQL sever this domain account must have the database owner (dbo) rights in the database.
Generally "sa" or any other...
January 2, 2008 at 5:24 am
Hi
dont think a global temp table will work here . How ever you can take data from SQL and put it in text file and from the text file put...
January 2, 2008 at 4:49 am
Viewing 15 posts - 976 through 990 (of 1,253 total)