Viewing 15 posts - 511 through 525 (of 1,124 total)
Does the DDS column in the table/view contains comma separated values (of each offices)? If yes, then you have to use the LIKE operator using wildcards.
SELECT BOCLEARED, CTCLEARED, MECLEARED,...
February 14, 2009 at 4:14 am
...You can also connect to a remote server using OPENROWSET function. Check in Books Online for OPENROWSET function, it has an example on connecting to a remote sql server....
February 14, 2009 at 3:52 am
I don't know why it's not working in EXCEL, but I know this task can be done without cursors. Well, in fact, it is just a simple SELECT...
SELECT *...
February 14, 2009 at 3:43 am
..Create a linked server in your local server using sp_addlinkedserver and a remote login mapping using sp_addlinkedsrvlogin. Then do a cross server select/insert query using four-part naming convention.
February 14, 2009 at 3:39 am
Here is an updated version with ONLY one PIVOT and it should also perform better than the one you have
by approximately 30% (though I am not sure about it, because...
February 12, 2009 at 8:36 am
amit (2/12/2009)
I am just curious here. Is there any sql statement which can provide me same info for DTS packages. That is the db name for a given package...
Unfortunately, I...
February 12, 2009 at 8:02 am
PayCheck (2/12/2009)
Ramesh (2/11/2009)
BTW, you can change the deployment location in VS or BIDS in Project Properties.how do I do this O_o. That would solve all my problems right now! Thanks
Goto...
February 12, 2009 at 7:59 am
Why do you need to store these values in a separate table? Why can't you query the view that you just now created? It will have all the...
February 12, 2009 at 7:46 am
Excerpt from BOL:
Corresponding columns in the result sets that are being combined with UNION, or any subset of columns used in individual queries, must be of the same data type,...
February 12, 2009 at 4:28 am
Joe Fuller (2/11/2009)
Thanks for the posts, but doesn't answer my question, or maybe I asked the wrong question!Is it possible to register http://localhost/reportserver/Testfolder in SSMS?
Thanks.
Firstly, it was my mistake, I...
February 12, 2009 at 3:25 am
josephptran2002 (2/11/2009)
I am really sorry to ask you questions about SQL 2005, since I have no one to turn to ask for such questions
...Don't worry we are here to...
February 12, 2009 at 3:13 am
...Simple, need 1 Data Flow Task, 1 SQL Connection & 1 Flat File Connection
February 11, 2009 at 9:39 am
Jack Corbett (2/11/2009)
February 11, 2009 at 9:34 am
Assuming that this ssvs004.byu.edu includes the domain name, you can try using the actual machine name (without the domain suffix). If you still can't access the server, then it...
February 11, 2009 at 9:27 am
The LEN function does not work on MAX data types. Use DATALENGTH instead to find the length of the string. Note that, DATALENGTH returns the bytes required to...
February 11, 2009 at 9:16 am
Viewing 15 posts - 511 through 525 (of 1,124 total)