Viewing 15 posts - 28,486 through 28,500 (of 39,771 total)
The hard part about seeing value in features is having a place where they can be used. This is where I think the developers and designers of SQL Server need...
May 20, 2008 at 9:27 am
First, you shouldn't grant sysadmin privleges. That's a huge security hole and unnecessary.
When replication runs, the account on the distributor logs into SQL Server just like any other user. So...
May 20, 2008 at 9:25 am
You should never shrink the data files if you can avoid this.
Shrinking the t-log does not invalidate the backup chain. http://msdn.microsoft.com/en-us/library/ms190749.aspx
The log file does not shrink after a log backup....
May 20, 2008 at 9:22 am
Here's another article: http://msdn.microsoft.com/en-us/library/ms190749.aspx
May 20, 2008 at 9:19 am
sorry to be late getting back, but I think IN reads better, especially when other people will see the code. Easy to make mistakes with OR.
If someone says OR is...
May 20, 2008 at 9:14 am
Please post the code and errors or results here. I don't really want to download and open a .doc from the forums.
You can use CHARINDEX/PATINDEX to find the $ signs....
May 20, 2008 at 8:51 am
Be sure you are connecting to the servername/instancename.
so if your computer is "Bob", and you have a default and named instance of "Sales", you connect to "Bob" to connect to...
May 20, 2008 at 8:47 am
Does Sybase have a remove? Alter database xxx remove device yyy?
Or an emptyfile option?
In the v6.5 days, I thought you could remove a device if it didn't (and never had)...
May 20, 2008 at 6:13 am
If you think this should be changed, file this on Connect (connect.microsoft.com) and get people to vote for it.
May 20, 2008 at 6:08 am
Is there some reason you need this?
I'm not sure this is stored as it's not really needed like it was in SQL 6.5 and previous.
Now if you restore, the backup...
May 19, 2008 at 2:23 pm
How did you log onto the server? In SSMS, opening a query window opens a separate connection to the server. The main "Object Explorer" or "Registered Servers" are connected with...
May 19, 2008 at 2:20 pm
SQL is supposed to release memory if other applications request it, but I don't think it does it very quickly. However I agree with John that you should limit the...
May 19, 2008 at 2:17 pm
I skipped some posts, but I can see calling a web service if you want to move data into SQL Server.
But not as part of a query. If you need...
May 19, 2008 at 10:38 am
What is the errorr your getting?
Your login needs to have rights to some database to connect.
May 19, 2008 at 8:52 am
Viewing 15 posts - 28,486 through 28,500 (of 39,771 total)