Viewing 15 posts - 3,391 through 3,405 (of 13,462 total)
assuming the second table could potentially be the same size as the max for the first, it looks like a 30 gig database to me for just the data?
1.5Meg *...
May 28, 2013 at 6:30 am
it sounds like orphaned users to me, is that right?
for SQL users(not windows users)
if you restore a database from a different server, the user "Bob" on my server is...
May 28, 2013 at 6:19 am
Denesh Naidoo (5/28/2013)
Hi All,Is it possible to configure SQL Server 2008 R2 database mail to add a signature to all e-mails sent out
Thanks
Denesh
that's usually handled by either the client application,...
May 28, 2013 at 5:26 am
you can only create a SQL user without login;
so CREATE USER [ClarkKent] WITHOUT LOGIN is fine and will work;
but if you put in a slash in the name, a windows...
May 24, 2013 at 3:15 pm
i've used filezilla from a command line, as well as CoreFTP; both of which support SFTP and other protocols;
i think FileZilla is free, and I know we paid for CoreFTP.
https://wiki.filezilla-project.org/Command-line_arguments_(Client)?
May 24, 2013 at 1:20 pm
can you edit the SQL Server(SQLEXPRESS) service, and change the startup account?
Change it form whatever is there, to your username and password, for example, and then start the service?

May 24, 2013 at 10:58 am

I have a certain fondness for doing solutions in TSQL, or at least be centered around TSQL, regardless of whether it's the right tool for the job or not.
I...
May 23, 2013 at 2:00 pm
killing a linked server action that is using a distributed transaction pretty much guarantees a reboot is required to complete the rollback.
it depends on what the query is actually doing...
May 23, 2013 at 1:38 pm
first, lets make sure you know the name of the instance, and the instance is actually running.
It's quite possible you installed the Tools but not the service itself, or the...
May 23, 2013 at 1:23 pm
pretty sure RAISERROR requires three parameters, and you only passed one.
RAISERROR ('Duplicate Records',16,1)
May 23, 2013 at 11:47 am
i believe functions that are not CLR functions must be prefaced by the schema:
SELECT
Address1,
Address2,
dbo.FNCNOTAVAILABLEDISPLAY(Address3)
FROM Customers
May 23, 2013 at 11:33 am
this link says the function is part of 2008R2 SP1 or later:
It is available in SQL 2008 R2 with SP1 or later. http://msdn.microsoft.com/en-us/library/hh223223(SQL.105).aspx
May 23, 2013 at 10:47 am
if you run the command in the master database on the server that seems to fail, does it work?
CROSS APPLY for a function will fail syntax if the database compatibility...
May 23, 2013 at 10:41 am
saving rtf text, or saving it inside a document(like word) which supports font formatting are the only other ways i can think of.
May 22, 2013 at 1:58 pm
AmarettoSlim (5/22/2013)
Can someone explain why SQL Server doesn't support object level recovery in a native manner?
How do 3rd party vendors make this possible?
I'm...
May 22, 2013 at 1:57 pm
Viewing 15 posts - 3,391 through 3,405 (of 13,462 total)