Viewing 15 posts - 1,081 through 1,095 (of 1,155 total)
gradpks ,
You can view any of the character codes in charmap. To view charmap click --> start --> run --> charmap and get the proper key strokes or code...
November 28, 2007 at 2:53 pm
You must first create the textfile with the column headers in it. Below is an example of openrowset.
Use AdventureWorks
go
INSERT OPENROWSET('Microsoft.Jet.OLEDB.4.0',
'Text;Database=C:\',test#txt)
--query goes here
SELECT FirstName
FROM Person.Contact
Where ContactID < 50
November 28, 2007 at 12:18 pm
Have you tried to switch the database out of recovery mode?
restore database databasename with recovery
November 28, 2007 at 12:10 pm
Just for some good reading material this link has some good arguement about the different recovery models and their performance.
http://www.sqlservercentral.com/Forums/Topic426078-146-1.aspx
November 28, 2007 at 11:51 am
I am glad everything worked out! 😀
It seems like ApexSQL will not even consider looking into the tran. log of a database, if it is set to the simple recovery...
November 28, 2007 at 11:47 am
I really do not think there is much you can do, in this situation. The biggest problem you are faced with is the recovery model is set to SIMPLE...
November 28, 2007 at 11:27 am
Edmund,
I have modified your query to meet your expected results. You should note that one of your expected results is incorrect. For 500260 Recoverable you are expecting 1634.73;...
November 28, 2007 at 8:22 am
Sample data and expected results would allow me to get a better understanding of what you are trying to accomplish :D. I would start with joining the tables in the...
November 27, 2007 at 3:47 pm
No. You have the ability to do a point in time restore with all versions of SQL server (not sure about compact edition), but the database must be set...
November 27, 2007 at 12:56 pm
You have a few options to choose from:
1. Restore from a known good backup
2. Try restoring the page from a good backup as such:
RESTORE DATABASE TEST PAGE = '1:82799' FROM...
November 26, 2007 at 2:32 pm
If you cannot get your hands on a 3rd party tool, I would just script each set of objects. This way you will have a file for Tables, Schemas,...
November 26, 2007 at 1:57 pm
Day,
ALZDBA was stating that the application only has to make one stored procedure call to retrieve both sets of information. The count is stored in output variable that the...
November 26, 2007 at 1:43 pm
The database is in a read only state. Did you restore the database and use the norecovery or standby options, or you backup the tail of the transaction log...
November 19, 2007 at 3:37 pm
You could probably do a sub query to reference back to the main table like such:
Select c.[ConsultantID]
,c.[FirstName]
,c.[LastName]
,c.[SponsorID]
,(SELECT [FirstName] + ' ' + [LastName] FROM Consultant WHERE ConsultantID = c.SponsorID)
from...
November 19, 2007 at 2:58 pm
Lalit,
The only method I can think of is to use a cursor to store the pervious calldetailid and compare it to the current. If they are the same, give...
November 19, 2007 at 2:01 pm
Viewing 15 posts - 1,081 through 1,095 (of 1,155 total)