Viewing 15 posts - 1,801 through 1,815 (of 2,038 total)
Hi Christopher
Sounds that some of your servers will not trim the spaces. I thought this would be a build-in functionality in SQL Server. I just googled a bit. After some...
March 20, 2009 at 11:50 am
For the first question:
What is the specification for the Serial No? Any incremental ID? Should it contain any information? Should it be a NVE or a Code39?
For the second question:
declare...
March 20, 2009 at 11:28 am
Hi
"Flo OR SQL Guru" is absolutely correct :hehe:
Lowell already posted the correct answer in the other thread:
http://www.sqlservercentral.com/Forums/Topic680417-338-2.aspx
Greets
Flo
March 20, 2009 at 10:30 am
Hi
An example for the names would be grate 😉
Well, assumed the file group name would be "FILE_GROUP_YYYY_M" where "YYYY" identifies the year and "M" identifies the month.
DECLARE @date datetime
SET @date...
March 20, 2009 at 9:03 am
How to identify the current month? By index creation date? Is it part of the file group name?
March 20, 2009 at 8:48 am
Hi
Do you mean something like this?
SELECT st.name table_name,
si.name index_name,
sd.name data_space_name,
'DBCC DBREINDEX("' +...
March 20, 2009 at 8:35 am
No cross posts please: http://www.sqlservercentral.com/Forums/Topic680328-149-1.aspx
March 20, 2009 at 6:52 am
Hi
What do you mean with display?
If you want to select DATETIME values in specified format:
It is possible, but you should not do it. You should format your output format within...
March 20, 2009 at 6:22 am
Grant Fritchey (3/20/2009)
If it helps at all, and I doubt it does, both my books...
March 20, 2009 at 6:09 am
Hi Jai
No direct answer to your question, but...
If you are using SSE 2k5 I would advice you to use the AdventureWorks database for learning. Pubs and Northwind are a little...
March 20, 2009 at 5:14 am
RBarryYoung (3/19/2009)
Good stuff both ways, Florian.
Thanks Barry! For review and feedback. 🙂
March 20, 2009 at 5:09 am
If you want to encrypt it and know how to do that with VARCHAR maybe just convert it:
DECLARE @t TABLE (img IMAGE)
INSERT INTO @t
SELECT 0x48656c6c6f20576f726c64
SELECT CONVERT(VARCHAR(MAX), CONVERT(VARBINARY(MAX),...
March 19, 2009 at 5:57 pm
Viewing 15 posts - 1,801 through 1,815 (of 2,038 total)