Viewing 15 posts - 1,216 through 1,230 (of 2,904 total)
Can you show us your script?
One thing to note: This "set dateformat dmy (to make them european)" is NOT a true statement.
SET DATEFORMAT does not make the date any format....
March 2, 2006 at 7:45 am
My understanding is that you can't do that. Once you put the database in 'normal mode', that recovers it and no more transaction logs can be applied. It is...
March 1, 2006 at 9:23 am
Abhijeet,
Please do not 'hijack' other people's posts.
Proper practice:
1. start your own thread.
2. do not 'hijack' other threads.
3. pay attention to when a thread was started...some you have posted this question...
March 1, 2006 at 9:16 am
Abhijeet,
Please do not 'hijack' other people's posts.
Proper practice:
1. start your own thread.
2. do not 'hijack' other threads.
3. pay attention to when a thread was started...some you have posted to were...
March 1, 2006 at 9:16 am
Abhijeet,
Abhijeet,
Please do not 'hijack' other people's posts.
Proper practice:
1. start your own thread.
2. do not 'hijack' other threads.
3. pay attention to when a thread was started...this one is over 3 years...
March 1, 2006 at 9:14 am
Abhijeet,
Please do not 'hijack' other people's posts.
Proper practice:
1. start your own thread.
2. do not 'hijack' other threads.
3. pay attention to when a thread was started...this one is over 3 years...
March 1, 2006 at 9:13 am
Please start a new thread....don't 'tag' your question onto someone else's thread. Especially one over a year old.
-SQLBill
March 1, 2006 at 9:11 am
This might give you a solution:
SELECT CAST(25/24 AS VARCHAR(2)) + ' Hours' + ' and ' + CAST(25%24 AS VARCHAR(2)) + ' Minutes'
Note: There is one space before Hours, one...
February 28, 2006 at 12:43 pm
Have you tried 'fully qualifying' the name?
databasename.owner.table
northwind.dbo.customers
-SQLBill
February 28, 2006 at 12:21 pm
You might have to make this a table alias....
LEFT JOIN
[SELECT description, id, type, call_req_id, last_mod_dt FROM act_log] A ON call_req.persid...
February 27, 2006 at 12:41 pm
Okay, you know the antivirus won't be able to scan your database files. But it will try. So, do you really gain anything from seeing all the error messages that...
February 27, 2006 at 12:36 pm
There are no hyphens in DATETIME datatype. Check the BOL. Quote: Values with the datetime data type are stored internally by Microsoft SQL Server as two 4-byte integers. The...
February 27, 2006 at 12:32 pm
BTW-you don't say what problem you are having....so....
Remember, if you have a parameter then you must input SOMETHING.
EXEC @company_name = 'MyComp',
@employee_name = 'Smith',
...
February 27, 2006 at 12:27 pm
If a parameter can be NULL, I make the parameter default to NULL and then use a WHERE clause like this:
WHERE (BeginDateTime >=
CASE WHEN @BDateTime...
February 27, 2006 at 12:20 pm
You could change the name of the dev server database, move it to the production server, do a INSERT INTO and select all the data from the production database tables...
February 27, 2006 at 12:11 pm
Viewing 15 posts - 1,216 through 1,230 (of 2,904 total)