Viewing 15 posts - 76 through 90 (of 441 total)
Hi
Can you give us sample of "Format File"
April 11, 2009 at 10:20 am
Hi
GO is not a Transact-SQL statement; it is a command recognized by the sqlcmd and osql utilities and SQL Server Management Studio Code editor.
SQL Server utilities interpret GO as a...
April 11, 2009 at 10:17 am
There is no way to tell unless you have logging inside the stored procedure.
You can see the dependecies of the stored procedure that may not tell you how many tables...
April 11, 2009 at 10:11 am
check out the below link
This uses PIVOT based on your example.
April 11, 2009 at 10:10 am
Quesry using joins would be much more sclable...based on the little knowledge that i have but..but again its really depends on the use.
Ex: If i have millions of records then...
April 11, 2009 at 10:05 am
Kavin (4/11/2009)
April 11, 2009 at 10:00 am
You Can even check out the below link
http://www.microsoft.com/learning/mcp/mcdba/requirements.mspx
April 11, 2009 at 7:52 am
Its really cool...with 3 different solutions..and all of them are independet :):-)
April 11, 2009 at 7:45 am
Simple solution in SQL...
Create Table VJ(
name varchar(10),
reading int,
sq_no int identity(1,1))
insert into VJ
(name , reading)
select 'UNDRI',10
insert into VJ
(name , reading)
select 'UNDRI',11
insert into VJ
(name , reading)
select 'UNDRI',20
insert into VJ
(name , reading)
select 'UNDRI',20
insert...
April 11, 2009 at 7:05 am
Hi
In addition to the above solution provided by Kavin, You can even do it with Excel if the volume is not high. Doing this in Excel is pretty straight forward.
1)...
April 11, 2009 at 6:50 am
Hi
Check out the below link
Migration:
http://www.microsoft.com/Sqlserver/2005/en/us/migration-access.aspx
SSAS:
http://msdn.microsoft.com/en-us/library/ms175609(SQL.90).aspx
April 11, 2009 at 6:33 am
There is no way to convert the SQL Loader control files to BCP format files.
Why dont you try out SSIS..
April 10, 2009 at 10:11 am
Florian Reischl (4/10/2009)
Vijaya Kadiyala (4/10/2009)
1) Insert the above query results into a table(Consultants_new).2) Rename the old table Consultants to Consultants_old.
3) Rename the old table Consultants_new to Consultants.
Thats it :w00t:
Hi...
April 10, 2009 at 10:04 am
RBarryYoung (4/10/2009)
Here's one way to go:
Select parsename(Replace(NameCol, ' ', '.'), 0) as LastName
, parsename(Replace(NameCol, ' ', '.'), 1) as FirstName
From YourTable
Simple solution :).
But the question is is this...
April 10, 2009 at 10:00 am
Viewing 15 posts - 76 through 90 (of 441 total)