Yes, all of this was checked - File/Page setup is configured as Landscape. When one saves and closes the doc it becomes Portrait. Also the footers are lost. Margins are set correctly. This is Word 97
Hello all,
The word document which was once in landscape view defaults as portrait view regardless of how the doc is saved any ideas on how to correct this?
Also, the footers which used to display no longer displays.
Thanks in advance.
What command can I use in Query Analyzer to view a stored procedure? I would like to read through a sp line by line but cannot remember the command. It is not sp_help procedure name nor is it execute procedure name.
Thanks in advance.
Thanks for all the help, these commands are great but for the following command:
ls /etc/*-release
How does one ensure that the patch upgrades are accounted for? That is if the version is shown as SuSE 7.3 how does one know that this is inclusive of the latest patch?
Thanks when I run the uname -a command I recieve the following:
Linux vu2 2.4.20-19.7 #1 Tue Jul 15 13:45:48 EDT 2003 i686 unknown
I was told that this box had Red Hat 7.3, how do you obtain this from the line above. I see no indication that this is RedHat and that it is7.3 thanks.
Hi,
How does one execute this SQL stored procedure in Sybase 12.5?
declare
@i integer
set @i = 1
while @i <= 5000
begin
insert into T00 (RECID) values (@i)
insert into T50 (RECID) values (@i)
set @i = @i + 1
end
Thanks in advance.
Hi,
For this stored procedure, I cannot make the counter work, any ideas? The table becomes populated with five 1's what I want is that the table is populated with 1,2,3,4,5.
DECLARE
i INTEGER := 1;
BEGIN
WHILE (i <= 5)
LOOP
insert into SLEONARD.T00 (RECID) values (1);
COMMIT;
insert into...
Hello,
How can I run this SQL stored procedure in Oracle?
declare @i integer
set @i = 1
while @i <= 5000
begin
insert into T00 values (@1)
insert into T50 values (@1)
set @i = @i + 1
end
commit
Thanks in advance!
When I use the Oracle Enterprise manager for 9i with the 92 DB and I attempt an insert to an NCHAR field I receive garbage data.
Example
Insert N'test' to a field which is NCHAR(10) nullable.
the data when applied appears like so:
T#E#S#T
Any idea why this is happening?
Thanks in advance.
I was wondering whether any of you have worked with creating an application which was converted to Unicode. If so what type of tests would you recommend prior to the translation\internationalization of the product.
Thanks in advance.
Definition of a dll:
An executable program module that performs some function. DLLs are widely used in Windows, but they are not launched directly by the user. When needed, they are called for by a running application and are loaded to provide additional functionality. DLLs can be rather simple...
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.