Viewing 15 posts - 1,516 through 1,530 (of 2,268 total)
Select * from YourTable
Where len(Description) > 35
March 16, 2009 at 9:35 am
You won't have to install VS2005.
As far as licensing goes, i think that if you have the correct CAL/process license for your server then you can install Client tools...
March 16, 2009 at 9:03 am
You should schedule transaction log back-ups this will truncate the log and mark the space for re-use.
Your database needs to be on full-reovery mode to allow this.
March 16, 2009 at 8:57 am
Vnc'ing into the server is not ideal, the client tools are on the same disk that has SQL server just go through the install process on...
March 16, 2009 at 8:54 am
try
select id, count(*) as RowAmount, color
from tableX
Group By id, color
March 16, 2009 at 5:43 am
The DBA should be able to give you specific permisson to view the definition of the View, and then Deny modify/alter permissons.
March 13, 2009 at 9:56 am
As far as i am aware sp_droptype is to drop alias data types, ones that have been user created, as Date is a system datatype in 2008.,...
March 13, 2009 at 9:31 am
I dont think it is a permission error, as you have said you checked, it looks like you are passing in the string 'Date' and using this as...
March 13, 2009 at 9:17 am
Have you installed SQL server on a server or on your local machine?
If this is a application running on a server or a local machine then you may consider downloading...
March 13, 2009 at 5:34 am
Scout7 (3/11/2009)
Windows Collation - Latin1_General
Dictionary Sort - Accent Sensitive.
This is working fine for most of main languages...
March 11, 2009 at 8:13 am
Krishna (3/11/2009)
karan457 (3/11/2009)
Hi i need to deploy my final database from staging server to productionHow to deploy database in production server
The fastest operation is to detach it and...
March 11, 2009 at 5:20 am
I have to agree with the comment above about normalistation, you will be in for a lot of issues down the track with this sort of design
March 10, 2009 at 12:04 pm
The CPU time is cummulative so it is normal for it to keep increasing
March 10, 2009 at 9:02 am
for opening large text files i use textpad
I am not sure if it has a rowcount option, but i have opened large 500mb+ text files without any problems
March 9, 2009 at 10:38 am
Viewing 15 posts - 1,516 through 1,530 (of 2,268 total)