Viewing 15 posts - 391 through 405 (of 484 total)
...and is supported by Microsoft.
Also, SQL Server Personal Edition, and of course MSDE, also install and are supported by Microsoft.
March 10, 2005 at 5:31 am
This is also a good reference for DB2 SQL that I keep bookmarked.
March 10, 2005 at 5:27 am
Sounds like the remote client is holding on the session after it's work is done. The RPC session can drop due to inactivity, the client doesn't know it, and tries...
March 8, 2005 at 12:56 pm
You also want to consider that if the data is encrypted/decrypted at the database server, then the data is transmitted over the network as unencrypted, both ways. Especially if you...
March 8, 2005 at 12:48 pm
No, it really isn't needed. SQL Server backups to disk, then backup the backup files to tape. That provides the fastest and least impact on performance. (While a backup is...
March 3, 2005 at 1:19 am
...or do you need 200 CAL Licences per server?
No, a CAL license covers any and all SQL Servers in the enterprise.
...we will also need to buy 3 Server Licences?
Yes.
...We would...
March 3, 2005 at 1:12 am
Actually I was called into a client's site for that same problem. Turned out that they had just recently implemented disk space quotas on the server, and the domain account...
March 3, 2005 at 12:59 am
You have, of course, checked that your connection string has userid and pwd parameters in it, and does not say "IntegratedSecurity=SSPI", right? If it has that, even if you do...
March 3, 2005 at 12:47 am
I guess you must be able to create partitions on different drives, I'm still wondering how to do exactly that.
Sure you can. But it all depends on how the raid...
March 2, 2005 at 10:52 am
If taking the single quotes out creates an error, then the data type must not be integer, it must be char or varchar. So are you getting an error trying...
March 1, 2005 at 8:33 pm
I'm still fuzzy about why an excel spreadsheet would need any credentials...
Accessing any resource (and a file is a resource) needs to have an account to determine security and permissions. ...
March 1, 2005 at 8:31 pm
Perhaps a file access security problem? What security logon is the linked server using? If you used default Windows Authentication, does Tina have permissions to access the file? Or you may...
March 1, 2005 at 2:25 pm
Did you try eliminating the single quotes around the UserID in the SQL String?
strUser = strUser & " WHERE (User_ID = " & receivedValue & ")"
instead of
strUser = strUser &...
March 1, 2005 at 2:14 pm
You are correct in that putting data and log files on separate partitions of the same drive or drive array gains you no benefits over putting them on the same...
March 1, 2005 at 12:29 pm
I had done this for a client once. I used vbscript and SQL-DMO objects to do the "Generate Script" functionality. (I beleived I had used the GenerateSQL method of the...
March 1, 2005 at 11:15 am
Viewing 15 posts - 391 through 405 (of 484 total)