Viewing 15 posts - 91 through 105 (of 1,109 total)
Grrrrrrrrrr, I've just answered the same question on
http://www.sqlservercentral.com/Forums/Topic548775-149-1.aspx
And there is another one at http://www.sqlservercentral.com/Forums/Topic548774-386-1.aspx
Please do not cross post in the future, your answers will be scattered around and difficult...
August 8, 2008 at 2:18 am
Grrrrrrrrrr, I've just found your other two posts with the same question. One of them was already answered!
http://www.sqlservercentral.com/Forums/Topic548780-145-1.aspx
and
http://www.sqlservercentral.com/Forums/Topic548774-386-1.aspx
Please do not cross post in the future, your answers be scattered...
August 8, 2008 at 2:17 am
In the first case you do pass in apostrophes, so this will not match.
Your next mistake is:
declare @phone char(20)
Note that you create a char(20), which will be 20 characters...
August 8, 2008 at 2:07 am
Posted and answered here: http://www.sqlservercentral.com/Forums/Topic548871-146-1.aspx
If you cross post, then the answers may be difficult to find for others.
- Andras
August 8, 2008 at 1:39 am
If you do not have very large tables then table partitioning is most likely to be useless for you. If you do, it may be a lifesaver. This is just...
August 8, 2008 at 1:31 am
sarat_1030 (8/8/2008)
Hi,I am new to SQLSERVER .
Can any one tell me shortcut to open query analyzer from RUN command prompt
without any clicks of mouse
run:
isqlw
You may actually want to consider...
August 8, 2008 at 1:25 am
If you need this data in retrospect, you may be able to dig out stuff from your default trace on 2005. You can run
SELECT *
FROM ...
August 7, 2008 at 7:29 am
Le Rhun Philippe (8/7/2008)
I'm looking for the way to change default values for those two option in SQL Server Agent Properties :
Maximum job history log size ...
August 7, 2008 at 6:31 am
sahoong (8/7/2008)
Can someone tell me if DBCC CHECKDB require space in tempdb?Many thanks.
Sahoong.
Yes, it does. You can find out approximately how much space it will require by running checkdb...
August 7, 2008 at 2:00 am
First make sure that your table indeed has the columns you want to be in the pk as the pk columns:
SELECT i.name
, ic.index_column_id
...
August 7, 2008 at 1:57 am
Andras Belokosztolszki (8/6/2008)
If you rebuild the index then it will update the statistics. If you just reorganize them, then the statistics will not be updated.Regards,
Andras
And a reference for...
August 6, 2008 at 9:10 am
If you rebuild the index then it will update the statistics. If you just reorganize them, then the statistics will not be updated.
Regards,
Andras
August 6, 2008 at 9:08 am
saurabh.punn (8/5/2008)
Tis is the result:
"sp_dbcmptlevel 'myDBName'
go
select @@version"
The current compatibility level is 80.
...
August 6, 2008 at 3:42 am
Vijaya Kadiyala (8/5/2008)
All these queries are tied to the Customer ID, If i know these values in advance then i can use PIVOT or CASE to convert the rows into...
August 6, 2008 at 2:49 am
Viewing 15 posts - 91 through 105 (of 1,109 total)