Viewing 15 posts - 35,086 through 35,100 (of 39,723 total)
Sorry, can't dig too deep right now, but this occurs for me. I suspect that more of these parameters are not optional and must be included.
March 22, 2004 at 2:55 pm
It shouldn't grow that big if you are committing as Antares suggested. You can always make the batch smaller, like 100, and add a small delay, like a second, between...
March 22, 2004 at 1:51 pm
It sounds like the setup path you are entering is incorrect. Can you verify the UNC path from explorer?
March 19, 2004 at 10:46 am
Agree with Wes. Should work, but you need to be sure you add some horsepower, or live with the short performance hit.
March 19, 2004 at 10:43 am
In Windows, fragmentation is more of an issue. For SQL Server, I wouldn't recommend defragmenting the data files or log files unless the server is at low load, but it...
March 17, 2004 at 2:43 pm
Probably some scripts on the site here.
Could you not run a backup transaciton with no_log? Can't remember if that works in 7. If not, killing the spid should have started...
March 17, 2004 at 1:32 pm
For the backups, which I didn't address. The backup process is finicky. Any network delays will cause failures and they need to be rerun. Backup to local disk and then...
March 17, 2004 at 1:27 pm
Slightly different take than Manny.
1. SQL Server doesn't have to be configured. Your code is what calls dynamic SQL. This is SQL that is built on the fly and submitted...
March 17, 2004 at 1:26 pm
1: yes
2: if you get a script of the schema, you could import that without data. Kind of a broad question.
3. Profiler can help find/filter queries taking longer than xx....
March 17, 2004 at 9:51 am
I looked at this a couple years ago along with MySQL. It's been a few versions and the PostGres/MySQL versions have advanced quite a bit.
My 2cents:
SQL Server is not unstable....
March 17, 2004 at 9:38 am
FilesystemObject can do the rename.
http://msdn.microsoft.com/library/default.asp?url=/library/en-us/script56/html/vtoriVBScript.asp
Include this in an active X script.
For the email, I use ASPEmail from persits (http://www.aspemail.com/) with this code:
Function Main()
Set Mail = CreateObject("Persits.MailSender")
Mail.Host = "mail.mydomain.com"
'put...
March 16, 2004 at 11:03 am
You should be able to log in as the SQL Server account (the one running mssqlserver) and log into mail. If this doesn't work, you might have the pwd or...
March 16, 2004 at 10:58 am
How many do you need? If it's more than 1024, I suggest you revist your design.
Also keep in mind the max byte size for a row is 8060, so...
March 16, 2004 at 10:44 am
Check that autoclose is not set.
http://www.sqlservercentral.com/columnists/sjones/autoclosefordatabases.asp
March 16, 2004 at 10:40 am
I'm not quite sure what you mean. There is a schema, but that likely would not work since you mention app customizations.
Are you trying to provide information to end users?...
March 15, 2004 at 2:37 pm
Viewing 15 posts - 35,086 through 35,100 (of 39,723 total)