Viewing 15 posts - 9,166 through 9,180 (of 26,490 total)
Since this is a backup you are trying to run, here is another option:
declare @dbname varchar(128),
@filedate varchar(64);
declare @diskfile varchar(256) = 'H:\Preupgrade\Backups\' +...
December 15, 2012 at 1:48 pm
This is what you are trying to accomplish:
declare @dbname varchar(128) = 'TestDB',
@filedate varchar(64) = '20121214210000',
...
December 14, 2012 at 9:05 pm
prabhu.st (12/14/2012)
I have a xml like this.
<DocumentElement>
<tLockhistory>
<lockrequesteddate>2012-12-14T00:00:00+05:30</lockrequesteddate>
<lockexpirydate>2012-12-29T00:00:00+05:30</lockexpirydate>
...
December 14, 2012 at 6:47 pm
Could you post the DDL for your tables, some sample data (INSERT INTO statements), and expected results based on the sample data? This would really help us help you.
December 14, 2012 at 4:40 pm
Made a few mods with my code. Inserted the sample data into a temp table, zeroed out the ConsecutiveD column, modified my code to use the temp table and...
December 13, 2012 at 7:50 am
10e5x (12/13/2012)
Firstly, i am sorry, Lynn.
Secondly, i am using SQL Server 2005
Lastly, that sentence is the entire error sentence. It appears when i click the ! functions in query...
December 13, 2012 at 2:37 am
10e5x (12/13/2012)
I tested your solutions and it works. However they keep prompt me "the OVER SQL constructs or statements is not supported". I just ignored that. Do u...
December 13, 2012 at 2:25 am
First, you didn't ask for an SSIS solution, you asked for a SQL solution.
Second, use the right tool for the job. This isn't a job for SSIS, it is...
December 13, 2012 at 1:19 am
Just another option to consider, think of it as food for thought:
with TestData as (
select
PassM,
cast(EnterDt as datetime) EnterDt,
ConsecutiveD
from
(values
...
December 12, 2012 at 10:32 pm
I'm not a betting man, as I have said on many occasions, "On any given Sunday." I'm just asking what others think may happen this weekend.
Even during the regular...
December 12, 2012 at 9:52 pm
Okay Everyone, don't forget to get your lineups in before gametime tomorrow if you have anyone playing Thursday night.
We are going into the semifinals, anyone want to hazard a guess...
December 12, 2012 at 8:56 pm
It would help us if you could post the DDL for the table(s) involved, sample data for the tables, and expected results based on the sample data.
December 12, 2012 at 7:20 pm
tom.moore.777 89426 (12/11/2012)
They can even script out other objects (Tables, Functions, Stored Procs etc),...
December 11, 2012 at 6:01 pm
What permissions does the user of the database you are using have?
December 11, 2012 at 5:46 pm
Here is an alternative. Restore the the full backup with NORECOVERY, retore all the log files except the last with no recovery, restore the last log file using restore...
December 11, 2012 at 5:44 pm
Viewing 15 posts - 9,166 through 9,180 (of 26,490 total)