Viewing 15 posts - 211 through 225 (of 280 total)
No, you've got the point of them - but a couple of notes.
I would steer clear of using the word 'master' since it may be confused with the 'master' database,...
---
Note to developers:Want to get the best help? Click here https://www.sqlservercentral.com/articles/forum-etiquette-how-to-post-datacode-on-a-forum-to-get-the-best-help (Jeff Moden)
My blog: http://uksqldba.blogspot.com
Visit http://www.DerekColley.co.uk to find out more about me.
February 3, 2012 at 4:27 am
I think it's got to be something to do with accounts. Maybe grant the SQL Server accounts explicit permissions on the network share. In terms of the XP...
---
Note to developers:Want to get the best help? Click here https://www.sqlservercentral.com/articles/forum-etiquette-how-to-post-datacode-on-a-forum-to-get-the-best-help (Jeff Moden)
My blog: http://uksqldba.blogspot.com
Visit http://www.DerekColley.co.uk to find out more about me.
February 3, 2012 at 4:03 am
Hi Jamie
I faced a similar situation not too long ago trying to do the exact same thing. I don't have a verifiable link but from experience, I've found SQL...
---
Note to developers:Want to get the best help? Click here https://www.sqlservercentral.com/articles/forum-etiquette-how-to-post-datacode-on-a-forum-to-get-the-best-help (Jeff Moden)
My blog: http://uksqldba.blogspot.com
Visit http://www.DerekColley.co.uk to find out more about me.
February 3, 2012 at 3:54 am
Steve
I think those are very good points, and I agree that for the beginner, SQL Server database administration can be a nightmare. However, for definitions of those terms, you...
---
Note to developers:Want to get the best help? Click here https://www.sqlservercentral.com/articles/forum-etiquette-how-to-post-datacode-on-a-forum-to-get-the-best-help (Jeff Moden)
My blog: http://uksqldba.blogspot.com
Visit http://www.DerekColley.co.uk to find out more about me.
February 3, 2012 at 3:28 am
I believe you may be creating a FK on itself, BId could be ambiguous.
Also ensure B.BID has an associated primary key constraint.
You can use NOCHECK to skip constraint checking...
Try:
ALTER TABLE...
---
Note to developers:Want to get the best help? Click here https://www.sqlservercentral.com/articles/forum-etiquette-how-to-post-datacode-on-a-forum-to-get-the-best-help (Jeff Moden)
My blog: http://uksqldba.blogspot.com
Visit http://www.DerekColley.co.uk to find out more about me.
January 18, 2012 at 10:54 am
You should install the correct edition of the software, especially in an enterprise environment.
Ignoring software T&Cs (and even sources!) might be considered okay at home (cough, cough) but absolutely not...
---
Note to developers:Want to get the best help? Click here https://www.sqlservercentral.com/articles/forum-etiquette-how-to-post-datacode-on-a-forum-to-get-the-best-help (Jeff Moden)
My blog: http://uksqldba.blogspot.com
Visit http://www.DerekColley.co.uk to find out more about me.
January 18, 2012 at 10:46 am
The problem is resolved now, whatever it was. I ran them in the right order so not sure why it borked. There isn't a complete script - just...
---
Note to developers:Want to get the best help? Click here https://www.sqlservercentral.com/articles/forum-etiquette-how-to-post-datacode-on-a-forum-to-get-the-best-help (Jeff Moden)
My blog: http://uksqldba.blogspot.com
Visit http://www.DerekColley.co.uk to find out more about me.
January 17, 2012 at 10:50 am
I've just done that John and it's working fine. I'm totally bemused by this. Really strange behaviour. Thanks for your help!
---
Note to developers:Want to get the best help? Click here https://www.sqlservercentral.com/articles/forum-etiquette-how-to-post-datacode-on-a-forum-to-get-the-best-help (Jeff Moden)
My blog: http://uksqldba.blogspot.com
Visit http://www.DerekColley.co.uk to find out more about me.
January 17, 2012 at 8:35 am
Yes, definitely there. I created the table and can actively query it. It's using the dbo schema, I've tried substituting dbo.statementHistory with no luck.
---
Note to developers:Want to get the best help? Click here https://www.sqlservercentral.com/articles/forum-etiquette-how-to-post-datacode-on-a-forum-to-get-the-best-help (Jeff Moden)
My blog: http://uksqldba.blogspot.com
Visit http://www.DerekColley.co.uk to find out more about me.
January 17, 2012 at 8:19 am
Further to this, use perfmon and the LogicalDisk: % free space counter as well. If this happens daily you should be able to see a clear spike or upward...
---
Note to developers:Want to get the best help? Click here https://www.sqlservercentral.com/articles/forum-etiquette-how-to-post-datacode-on-a-forum-to-get-the-best-help (Jeff Moden)
My blog: http://uksqldba.blogspot.com
Visit http://www.DerekColley.co.uk to find out more about me.
January 16, 2012 at 8:43 am
One more thing, if you are concerned about security and protecting against data loss/theft have you thought about implementing transparent data encryption?
http://msdn.microsoft.com/en-us/library/bb934049.aspx
This would protect against wholesale data loss i.e. an...
---
Note to developers:Want to get the best help? Click here https://www.sqlservercentral.com/articles/forum-etiquette-how-to-post-datacode-on-a-forum-to-get-the-best-help (Jeff Moden)
My blog: http://uksqldba.blogspot.com
Visit http://www.DerekColley.co.uk to find out more about me.
January 16, 2012 at 8:19 am
Opening port 1433 would leave you susceptible to the Slammer virus if any of your sa passwords were short, clear or NULL. (I trust they're not!) I've not heard...
---
Note to developers:Want to get the best help? Click here https://www.sqlservercentral.com/articles/forum-etiquette-how-to-post-datacode-on-a-forum-to-get-the-best-help (Jeff Moden)
My blog: http://uksqldba.blogspot.com
Visit http://www.DerekColley.co.uk to find out more about me.
January 16, 2012 at 8:16 am
Assuming you wanted to edit / delete the data using SQL Server Management Studio or at the command line, rather than using an application, you would use the UPDATE or...
---
Note to developers:Want to get the best help? Click here https://www.sqlservercentral.com/articles/forum-etiquette-how-to-post-datacode-on-a-forum-to-get-the-best-help (Jeff Moden)
My blog: http://uksqldba.blogspot.com
Visit http://www.DerekColley.co.uk to find out more about me.
January 16, 2012 at 7:22 am
Surely local installation of SSMS (client tools) configured to connect to your server at port 1433 (assuming this is opened and TCP/IP connections allowed remotely on server) would do the...
---
Note to developers:Want to get the best help? Click here https://www.sqlservercentral.com/articles/forum-etiquette-how-to-post-datacode-on-a-forum-to-get-the-best-help (Jeff Moden)
My blog: http://uksqldba.blogspot.com
Visit http://www.DerekColley.co.uk to find out more about me.
January 16, 2012 at 7:09 am
You could use BULK INSERT instead, together with a format file (create using bcp utility). Save the Excel file as .csv first.
e.g. at the command line...
bcp Database..Table format nul...
---
Note to developers:Want to get the best help? Click here https://www.sqlservercentral.com/articles/forum-etiquette-how-to-post-datacode-on-a-forum-to-get-the-best-help (Jeff Moden)
My blog: http://uksqldba.blogspot.com
Visit http://www.DerekColley.co.uk to find out more about me.
January 16, 2012 at 7:06 am
Viewing 15 posts - 211 through 225 (of 280 total)