Viewing 15 posts - 106 through 120 (of 178 total)
Proof read and spell check please before posting....
i couldn't found in MODIFY option of maintenance plan.
In SSMS, right click on the maintenance plan and click modify.
i want to alter the...
March 20, 2009 at 10:45 am
Did you get this fixed? Make sure all the same DLL Files are located in the bin dir of the OLAP install folder..
Default:
"C:\Program Files\Microsoft SQL Server\MSSQL.x\OLAP\bin\"
-- compare working install against...
March 19, 2009 at 10:32 am
change the type of your size column to bigint or cast(size as bigint) on the column.
March 19, 2009 at 9:35 am
If you're going to post, you need to at least spell check and proof read my friend....
I think you want this:
SELECT B.SchemeCode ...
March 19, 2009 at 9:29 am
Just check the system requirements on the download page for SQL 2005 SP3.
I believe Windows 2000 SP4 is in the list.
March 19, 2009 at 6:41 am
Yes, search google for something along the lines of "SQL Server Stored Procedure Security" and you will find lots of articles on best practices with SP's and security.
March 19, 2009 at 5:58 am
Change
insert into AuxSpaceTable select name,size,used,logsize,logspaceused from #dbs1;
To
insert into AuxSpaceTable select name,Size,Used,LogSize,LogSpaceUsed from #dbs1;
You hit a case sensitive server.
For your reference, you can verify with what your server collation is set...
March 13, 2009 at 6:37 am
For 1- grab process explorer (http://technet.microsoft.com/en-us/sysinternals/bb896653.aspx) and see what process is eating CPU, and see if it is SQL server is creating the spikes.
March 13, 2009 at 6:17 am
At first glance I see this, but it doesnt match your error message
select @@servername as 'InstName', sum(a.size) as 'Space Aloc (mb)', sum(a.used) as 'Space Used (mb)', sum(a.size)-sum(a.used) as 'Free Space...
March 13, 2009 at 6:11 am
I'm 90% sure Uninstall Enterprise/Install Standard is only option.
edition differences:
March 12, 2009 at 12:47 pm
http://technet.microsoft.com/en-ca/library/cc966395.aspx
This is a pretty good explanation of how to implement security.
If I needed to do this, I would just restrict access to the table to all users but...
March 12, 2009 at 7:17 am
Do you have the full error message? Is the output saved to a report file?
Check your sql server error logs... you might see something there.
and also run a dbcc...
March 12, 2009 at 7:09 am
All depends on how much time you have to spend on it I suppose 🙂
I would feel out the situation and see if creating regular data copies to tables elsewhere...
March 12, 2009 at 7:06 am
I wouldn't use SQL Server to do this. Just setup a windows scheduler task on the web server to kill the files on your schedule (if needed). And...
March 12, 2009 at 6:08 am
I want col2 to be masked i.e. i dont want the column to be in clear text instead look like an hashed out column but when you perform a select...
March 12, 2009 at 6:01 am
Viewing 15 posts - 106 through 120 (of 178 total)