Viewing 15 posts - 8,926 through 8,940 (of 9,641 total)
I'll second rbarry's post. Performance is not as big a deal now. The others are. Here are a couple of links to Andy Warren's Blog (It Depends)...
March 29, 2008 at 5:07 pm
You cannot backup based on schema. You would need to put the object within each schema on a separate file. Then you could do file backups and restores.
My...
March 29, 2008 at 4:52 pm
You obviously do not have autoshrink enabled so you need to manually shrink your transaction log using DBCC ShrinkDB or DBCC ShrinkFile
March 29, 2008 at 4:30 pm
It looks like you are using Integrated Security to connect and the ODBC connection is grabbing the guest user login for the server. Has that login been granted rights...
March 29, 2008 at 4:28 pm
Do the tables have the same unique key that you could join on? If they do you do not need a cursor. You could use a full outer...
March 28, 2008 at 2:59 pm
Have you enabled remote connections on the SQL Express instance?
March 28, 2008 at 2:34 pm
While I agree with ALZDBA that actually writing the sql for each combination is probably better I will attempt to answer your question.
I would write the code something like this:
CREATE...
March 28, 2008 at 2:33 pm
I did not find this issue on Microsoft Connect so I submitted it as a bug. Here is the link for anyone who would like to confirm it:
https://connect.microsoft.com/SQLServer/feedback/ViewFeedback.aspx?FeedbackID=335613
Thanks again...
March 28, 2008 at 11:54 am
Guess what, mine matches Todd's. Here it is for confirmation:
Microsoft SQL Server Management Studio 9.00.3042.00
Microsoft Analysis Services Client Tools ...
March 28, 2008 at 9:39 am
Count me on board the biometric side of the debate. I still think my credit card data is safer in a database than when I hand it to the...
March 28, 2008 at 7:40 am
Well, Rob, I also fall into the performance always matters camp, so I normally don't mind writing specific stored procedures because that is how you get the best performance. ...
March 27, 2008 at 6:57 pm
Ashwin M N (3/27/2008)
March 27, 2008 at 12:28 pm
Rob,
I usually explain things in detail because you never know the expertise of the poster so I like to try to make it so anyone can understand it.
I would have...
March 27, 2008 at 12:19 pm
wwang (3/27/2008)
Thanks for your reply.
So, the bigint will serve up to 2^63.
What is the datatype will serve up to 2^127 integer number?
Or, the SQL Server 2005 can have...
March 27, 2008 at 12:15 pm
Viewing 15 posts - 8,926 through 8,940 (of 9,641 total)