Viewing 15 posts - 61 through 75 (of 86 total)
And can you ping the server?
January 9, 2008 at 7:59 am
I'd put the inserts into a transaction.
Cannot see any reason to use a view or triggers here...
December 19, 2007 at 1:29 am
could be the SQL Server Agent connecting to the database?
Log into the server where you are running SQL. Start SQL Server Management Studio and log in. Right-click the SQL Server...
November 30, 2007 at 2:32 am
Hi
I'm starting to look at mirroring to provide failover. Am trying to avoid clustering as I have had problems setting it up and maintaining it.
However, we are thinking to...
November 28, 2007 at 2:35 am
The vb code you posted uses:
Matrix(i, j) = Matrix(i, j) + (Matrix(P, j) * -m)
... is this minus m? You don't seem to use it in the SQL...
November 22, 2007 at 7:27 am
Hi
I checked the numbers in your original post.
When I used:
declare @x float
set @x=2.77555756156289E-17
declare @y float ...
November 22, 2007 at 7:08 am
Dont forget to back up the tail of the log - you may need the latest transactions:)
November 21, 2007 at 1:11 am
The degrading performance may be due to more data on your system. If so, then a re-think on the stored proc may be required.
An easy thing to check - are...
November 5, 2007 at 7:56 am
You have already loaded your database from the flat files once.
Assuming the database files don't change, truncate all the tables and then re-run the process to load the database.
The truncate...
October 25, 2007 at 1:08 am
I've had good compression rates with Red Gate.
October 25, 2007 at 1:02 am
Hi
How are you trying to restore?
SQLCMD may be an option - see BOL "How to: Restore the master Database (Transact-SQL)"
C:\> sqlcmd
1> RESTORE DATABASE master FROM DISK = 'Z:\SQLServerBackups\master.bak';
2> GO
My gotcha...
October 19, 2007 at 1:41 am
Does this work?
EXEC master.dbo.sp_dropdevice @logicalname = N'somename'
Good luck!:)
September 24, 2007 at 1:06 am
Have you applied SP2?
Try right-clicking on (say) a database, then Reports -> Standard Reports
September 24, 2007 at 12:57 am
this is quick & dirty. It assumes that you know the statements are OK and will work cleanly. Build a table holding all your SQL, then run. TEST...
September 21, 2007 at 3:06 am
Hi
Not sure I understand your last paragraph:
"I was tried to move database to another SQL server so, that I was restore database from older backup on the another SQL server"
I...
September 18, 2007 at 12:26 am
Viewing 15 posts - 61 through 75 (of 86 total)