Viewing 15 posts - 3,196 through 3,210 (of 6,397 total)
It looks like a certificate problem, I would ask the creator of the certificate to provide you with an updated certificate that you can install to the termserver as it...
December 4, 2012 at 7:16 am
Using backup and restore commands no. SQL has to restore the database how it was at the time it was backed up, which means you will always get orphaned...
December 4, 2012 at 7:07 am
Well how do you plan to format the INT into the required format as a VARCHAR to convert to TIME?
That is why INT cannot convert to TIME.
December 4, 2012 at 6:36 am
Just convert direct from a VARCHAR value, but need to ensure it is of the correct formatting for it to convert, '5' will not convert to time.
December 4, 2012 at 6:24 am
is it every query or just certain queries
do you do index and statistic maintenance on all your databases
December 4, 2012 at 6:00 am
My bad, you cant change the table collation, that should of been the database level, to alter a table you can change column collations
Drop all indexes on any columns which...
December 4, 2012 at 5:02 am
numeric columns dont have a collation.
@memymasta
collation can be changed at the server, database or column level depending what you want to do
December 4, 2012 at 4:53 am
Yes, full backups do not affect the transaction log chain, so you can do as many full backups you want a day and can still recover from any of them...
December 4, 2012 at 3:47 am
Cliff Jones (12/3/2012)
Stuart Davies (12/1/2012)
GoonhillyHill Billy
Moonshine
December 3, 2012 at 8:16 am
Look at using openrowset and inserting into the table not the view passing in the parameter.
INSERT INTO myTable(ProjectID,FName)
SELECT @ProjectID, FName
FROM OPENROWSET(BULK N'C:\Text1.txt', .....)
GO
December 3, 2012 at 8:11 am
bubby (12/3/2012)
Microsoft SQL Server 2008 R2 (SP2) - 10.50.4000.0 (X64) Jun 28 2012 08:36:30 Copyright (c)...
December 3, 2012 at 7:57 am
Viewing 15 posts - 3,196 through 3,210 (of 6,397 total)