Viewing 15 posts - 511 through 525 (of 2,008 total)
However it's late to point it but there are two threads running for same issue in SSC. Both have more than 5 replies. 😀
This is the early thread.
http://www.sqlservercentral.com/Forums/Topic1227680-392-1.aspx
December 30, 2011 at 4:56 am
forsqlserver (12/30/2011)
In this it is asking for user_id and password and I want to schedule it using job in automatic completion of backup.
How can user_id and...
December 30, 2011 at 4:42 am
Michael Valentine Jones (12/29/2011)
This error is an indication of a network problem:
[font="Arial Narrow"]"The operating system returned the error '64(The specified network name is no longer available.)' while attempting 'FlushFileBuffers' "[/font]
It...
December 30, 2011 at 4:14 am
It's not relevant to your error but you should rewrite the JOIN as well. It may be a CROSS JOIN.
FROM dbo_HomePhone hp, dbo_Subscription sub, dbo_Address_G1 ad, dbo_PhoneDelivery pd
LEFT OUTER JOIN...
December 30, 2011 at 4:05 am
You can regenerate it.
Example:
USE AdventureWorks2008R2;
ALTER MASTER KEY REGENERATE WITH ENCRYPTION BY PASSWORD = 'dsjdkflJ435907NnmM#sX003';
GO
For More: http://technet.microsoft.com/en-us/library/ms186937.aspx
DON'T try it on PROD server until you verify the above on a test...
December 30, 2011 at 3:47 am
Can you please post the table structure (DDL) for 'dbo.METHOD'?
December 30, 2011 at 3:39 am
The typical encryption / decryption application follows either of two scenarios.
•Front End sends raw data & database server encrypts few fields based on requirements. In data retrieval, decryption happens at...
December 30, 2011 at 3:33 am
By looking into code & your description I can confirm that it’s not SQL Server limitation. You didn’t get ‘SqlException’ that indicate database errors. The Error says ‘COMException’ so I...
December 30, 2011 at 3:24 am
forsqlserver (12/30/2011)
I want to create backup on Network Drive ....
Any particular reason for that?
December 30, 2011 at 3:13 am
PaulB-TheOneAndOnly (12/29/2011)
Didn't use a third party tool but a set of three stored procedures: sp_hexadecimal, sp_help_revlogin and a sligthly hacked version...
December 30, 2011 at 3:00 am
Do you want to create backup on Network Drive or do you want to copy backups on Network Drive?
If first, it’s not advised. The solution on second scenario depends on...
December 30, 2011 at 2:45 am
Just to add what Jon said, persisted computed columns actually consume disk space. If your query has search predicates on computed columns then it would be a good idea (with...
December 30, 2011 at 2:41 am
chintalapati.srikanth (12/30/2011)
UserName DateTime Action
abc ...
December 30, 2011 at 2:27 am
Please post DDLs, sample data & Execution Plans (actual) as well. It’s required for performance tuning exercise.
December 30, 2011 at 2:19 am
GilaMonster (12/29/2011)
Stefan Krzywicki (12/29/2011)
GilaMonster (12/29/2011)
Stefan Krzywicki (12/29/2011)
I don't have room on my machine either.Two words: External harddrive.
Seriously, I've had to do that once or twice.
I can't even get them to...
December 29, 2011 at 10:30 am
Viewing 15 posts - 511 through 525 (of 2,008 total)