Viewing 15 posts - 511 through 525 (of 5,103 total)
cdooley (2/12/2009)
if IDENT_CURRENT('[dbo].[ActivityStats]') = @range_end
...
February 13, 2009 at 8:28 am
I for one vote FOR the feature. I have lost the count of how many times I have ended using UNION ALL constructs from the stored procedures parameter lists to...
February 13, 2009 at 8:17 am
If the IDs are not consecutive the solution is a bit more convoluted:
CREATE TABLE tb (ID INT , Name VARCHAR(20), Title VARCHAR(200) )
INSERT INTO...
February 11, 2009 at 4:40 pm
In all honesty I hope you are not losing data but it is ***VERY*** bad to do that!
February 11, 2009 at 1:42 pm
First of all you should drop that stat (in case it was "upgraded" from 2000)
Then run an update of the stats with fullscan and also update usage
February 11, 2009 at 1:34 pm
You are looking for DISTRIBUTED TRANSACTIONS in a way that is not appropriate.
You should re-think your solution.
-Noel
February 11, 2009 at 10:41 am
My initial shot in the dark. You have different collations on those servers/databases.
February 11, 2009 at 10:37 am
For reasons like this I always use TSQL and specify the path. No UI surprises "ever"!
February 11, 2009 at 10:35 am
aldo_marchioni (2/11/2009)
If i can implement Roy's solution, my customer is going to save about 5200 in SQL Server Licensing (that...
February 11, 2009 at 10:30 am
Glad you solved.
What I meant is that you needed to somehow (like above using LMHOSTS or SQL Server ALIASES) have direct connectivity.
It is very nice of you to share...
February 11, 2009 at 10:07 am
You can use
ALTER SCHEMA Trainning TRANSFER dbo.tablename;
You will lose the permissions though 🙁
February 10, 2009 at 4:39 pm
Why is the initial size for model DB is 3 MB by default?
The sizes of these files can vary slightly for different editions of SQL Server 2005
Are there any...
February 10, 2009 at 4:34 pm
kiransuram19 (2/10/2009)
What permissions I have to give to users so that they can execute the view?
I gave db_reader permission...
February 10, 2009 at 2:40 pm
You can specify the SIZE at creation time.
If you need to get that size automatically every time you create a new DB and your model is 3MB you will have...
February 10, 2009 at 2:28 pm
Viewing 15 posts - 511 through 525 (of 5,103 total)