Viewing 9 posts - 76 through 85 (of 85 total)
give the restore database name....
explore the folder where backup file is placed.
then in last text box manually type the name of backup file
including filename + .bak .
It works
May 19, 2009 at 7:52 am
give the restore database name....
explore the folder where backup file is placed.
then in last text box manually type the name of backup file
May 19, 2009 at 7:35 am
Check the property of your backup file....it is saved with .bak extension then there should not be problem.
when restore give your DB name...........thats all
May 19, 2009 at 5:30 am
Thanks,
kruti, Peter Brinkhaus
your both's reply works and i get solution thanks............
May 19, 2009 at 2:15 am
ok.
But I do not need row count i need count(name).
eg.
count(name) name surname
--------------------------------
1 ...
May 19, 2009 at 1:45 am
create table #ORStable (doclen bigint, doc varbinary(max))
insert into #ORStable
select len(bulkcolumn), * from openrowset(bulk 'C:\TABLEINFO.TXT', SINGLE_BLOB)
as r
select * from #ORStable
select CAST(doc as nvarchar(MAX)) from #ORStable
or search for openrowset
May 7, 2009 at 7:01 am
--USE THIS ONE
BEGIN TRANSACTION
SELECT * FROM UserStats WHERE UserID = @user-id
IF NOT EXISTS (SELECT * FROM UserStats WHERE UserID = @user-id)
BEGIN
INSERT INTO UserStats (UserID) VALUES (@UserID)
END
COMMIT...
May 7, 2009 at 6:25 am
Viewing 9 posts - 76 through 85 (of 85 total)